/* =========================================================
   Sub-brand pages — shared base + 4 variant palettes (Stori / Hafn / Core / Boost)
   Each is a sister-brand under Mona Digital: same type stack, same nav/footer,
   differentiated by --sb-accent + surface colour + signature motif.
   ========================================================= */

/* ---------------------------------------------------------
 * 1. Per-sub-brand tokens
 * --------------------------------------------------------- */

/* Shared fallbacks for any body.sb without a specific sub-brand class.
 * MUST come BEFORE the per-brand blocks below — same-specificity rules
 * cascade in source order, so anything defined here is then properly
 * overridden by body.sb-stori / body.sb-hafn / body.sb-core / body.sb-boost.
 * (Was previously defined AFTER all the brand blocks → the fallback won
 * and the brand colours never applied. That bug made boost render the
 * global teal accent instead of its electric-violet, and made all card
 * surfaces fall back to the global cream --bg-alt instead of each
 * brand's dark/light surface.) */
body.sb {
	--sb-accent:       var(--accent);
	--sb-accent-deep:  var(--accent-deep);
	--sb-accent-soft:  var(--accent-soft);
	--sb-surface:      var(--bg-alt);
	--sb-surface-alt:  var(--hairline);
}

/* STORI — weddings. Warm peach + cream. Intimate, serif-leaning. */
body.sb-stori {
	--sb-accent:       #C47A52;
	--sb-accent-deep:  #A05B38;
	--sb-accent-soft:  #F0D9C2;
	--sb-surface:      #F4E9D5;
	--sb-surface-alt:  #EBDAB8;
	--sb-ink-on-accent:#FFFFFF;
}

/* HAFN — property. Premium editorial. Charcoal + cream + antique gold.
   Brand ref: "A haven for property media." Cormorant Garamond + Jost.

   Palette is driven by paired tokens so dark mode simply swaps the two main
   colours (cream ↔ charcoal). Gold accent is shared across both modes. */
body.sb-hafn {
	/* Hafn-local tokens — the "page" side and the "ink" side flip in dark mode. */
	--hf-page:         #F5F2ED; /* cream — the lighter half */
	--hf-ink:          #1A1A1A; /* charcoal — the darker half */
	--hf-ink-muted:    rgba(26, 26, 26, .66);
	--hf-hairline:     rgba(26, 26, 26, .14);
	--hf-accent:       #C9A84C; /* antique gold */
	--hf-accent-deep:  #9F8338;
	--hf-accent-soft:  #EBDDA8;

	/* Reuse shared sub-brand accent variables so common components pick them up. */
	--sb-accent:       var(--hf-accent);
	--sb-accent-deep:  var(--hf-accent-deep);
	--sb-accent-soft:  var(--hf-accent-soft);
	--sb-surface:      var(--hf-page);
	--sb-surface-alt:  var(--hf-hairline);
	--sb-charcoal:     var(--hf-ink);
	--sb-ink-on-accent:#1A1A1A;

	/* Override Mona's page background so the whole Hafn page takes on cream
	   (or charcoal in dark mode) without hard-coding. */
	background: var(--hf-page);
	color: var(--hf-ink);
}

/* DARK MODE on Hafn — flip the two principal colours. Gold stays. */
body.sb-hafn.dark {
	--hf-page:         #121210;
	--hf-ink:          #F5F2ED;
	--hf-ink-muted:    rgba(245, 242, 237, .7);
	--hf-hairline:     rgba(245, 242, 237, .14);
	--hf-accent:       #D9B758; /* slight boost for contrast on dark */
	--hf-accent-deep:  #B89341;
}

/* Hafn nav — REVERTED to use the standard mona-digital nav styling.
 * (User feedback: brand-specific nav was switching colours mid-stream
 * vs. the rest of the site, which read as a bug rather than a brand
 * choice. The nav now inherits global tokens, so it's identical to
 * every other page and reacts cleanly to the dark/light toggle.) */

/* CORE — fitness. Scorched orange on pure black. Raw heat, no-nonsense gym energy.
   Always dark canvas (never flips with light mode) — fitness branding is inherently dark. */
body.sb-core {
	--sb-accent:       #E85A2A; /* fire orange */
	--sb-accent-deep:  #B83E18;
	--sb-accent-soft:  #FF8A5C;
	--sb-surface:      #080808; /* pure black canvas */
	--sb-surface-alt:  #141414;
	--sb-ink-on-accent:#FFFFFF;

	/* Core-local tokens for the fixed dark page treatment */
	--co-page:         #080808;
	--co-ink:          #F5F5F4;
	--co-ink-muted:    rgba(245, 245, 244, .68);
	--co-hairline:     rgba(245, 245, 244, .12);

	background: var(--co-page);
	color: var(--co-ink);
}
body.sb-core.dark { /* Slight shift in dark mode but still dark */
	--co-page:    #0C0D0D;
	--co-hairline: rgba(245, 245, 244, .14);
}
/* Core is locked dark. Hide the theme toggle on Core's nav so users
 * don't see a control that does nothing — the page intentionally
 * doesn't respect light mode (gym branding is inherently dark, per
 * the design call). */
body.sb-core .np-theme {
	display: none !important;
}

/* Core nav — masthead transparent + scrolled pill (dark translucent) */
body.sb-core .nav-pill {
	background: transparent;
	border-color: transparent;
	border-bottom-color: var(--co-hairline);
}
body.sb-core .nav-shell.is-scrolled .nav-pill {
	background: rgba(8, 8, 8, .78);
	border-color: rgba(245, 245, 244, .1);
	border-bottom-color: rgba(245, 245, 244, .1);
	box-shadow: 0 8px 32px -14px rgba(0, 0, 0, .65);
}
body.sb-core .nav-pill .np-brand-text,
body.sb-core .nav-pill .np-links a,
body.sb-core .nav-pill .np-menutrig { color: var(--co-ink); }
body.sb-core .np-theme .np-theme-dot { background: var(--sb-accent); }

/* BOOST — social. Electric violet identity that now flips between
   a light and a dark canvas via the global theme toggle. The accent
   stays #7C3AED in both modes; surface, ink and hairline switch.
   (Was previously locked to dark — user feedback was that light mode
   on /boost/ rendered broken.) */
body.sb-boost {
	--sb-accent:        #7C3AED;        /* electric violet (constant) */
	--sb-ink-on-accent: #FFFFFF;        /* constant — accent is dark enough */

	/* LIGHT MODE (default) — soft lavender white canvas. */
	--sb-accent-deep:  #5520C4;         /* deeper violet for italics on light */
	--sb-accent-soft:  #E8DDFC;         /* light violet wash */
	--sb-surface:      #FAF8FD;         /* page bg */
	--sb-surface-alt:  #ECE6F5;         /* card surface — slightly lifted */

	--bo-page:         #FAF8FD;
	--bo-ink:          #18102E;         /* deep violet-ink for body copy */
	--bo-ink-muted:    rgba(24, 16, 46, .62);
	--bo-hairline:     rgba(24, 16, 46, .10);

	background: var(--bo-page);
	color: var(--bo-ink);
}
/* DARK MODE — original Boost agency identity. */
body.sb-boost.dark,
body.sb-boost[data-theme="dark"] {
	--sb-accent-deep:  #A07AF5;         /* brighter violet for italics on dark */
	--sb-accent-soft:  #5520C4;         /* deep purple for dark backdrops */
	--sb-surface:      #0A0A0C;
	--sb-surface-alt:  #13121A;

	--bo-page:         #0C0D0D;
	--bo-ink:          #F0EFF8;
	--bo-ink-muted:    rgba(240, 239, 248, .68);
	--bo-hairline:     rgba(240, 239, 248, .14);
}
/* Boost nav — REVERTED to use the standard mona-digital nav styling.
 * (Same fix as Hafn — brand-specific nav was switching colours mid-
 * stream vs. the rest of the site. Now uses global tokens so it
 * matches every other page and reacts cleanly to dark/light toggle.) */

/* (Note: body.sb fallback moved to top of file — see comment near line 14.
 * It must come BEFORE the per-brand blocks for the cascade to work. This
 * comment marks the old position so future readers don't re-add it here.) */

/* ---------------------------------------------------------
 * 2. Shared sub-brand components
 * --------------------------------------------------------- */

.sb-hero {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 9rem var(--gutter) 3rem;
	position: relative;
}

.sb-hero .brand-label {
	font-family: var(--font-mono);
	font-size: .72rem;
	letter-spacing: .08em;
	color: var(--sb-accent);
	text-transform: lowercase;
	margin-bottom: 2rem;
	display: inline-flex;
	align-items: center;
	gap: .75em;
}
.sb-hero .brand-label::before {
	content: "";
	width: 10px; height: 10px;
	background: var(--sb-accent);
	border-radius: 50%;
}

.sb-hero h1 {
	font-weight: 500;
	font-size: clamp(3rem, 10vw, 9rem);
	letter-spacing: -0.03em;
	line-height: .9;
	text-transform: lowercase;
	color: var(--ink);
}
.sb-hero h1 .italic {
	font-family: var(--font-accent-serif);
	font-style: italic;
	font-weight: 300;
	color: var(--sb-accent-deep);
}

/* Signature motif — absolutely positioned in the hero */
.sb-motif {
	position: absolute;
	pointer-events: none;
	color: var(--sb-accent);
	opacity: .7;
}

/* Content blocks */
.sb-block {
	max-width: var(--maxw);
	margin: 4rem auto;
	padding: 4rem var(--gutter);
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	align-items: start;
	border-top: 1px solid var(--hairline);
}
.sb-block h2 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	letter-spacing: -0.04em;
	text-transform: lowercase;
	line-height: .95;
	max-width: 10ch;
}
.sb-block h2 .italic {
	font-family: var(--font-accent-serif);
	font-style: italic;
	font-weight: 300;
	color: var(--sb-accent-deep);
}
.sb-block .content {
	font-size: 1.08rem;
	line-height: 1.65;
	color: var(--ink);
	max-width: 60ch;
}
.sb-block .content p { margin-bottom: 1.3em; }
.sb-block .content ul {
	padding: 0;
	margin: 0 0 1.5em;
	list-style: none;
}
.sb-block .content ul li {
	padding: .7em 0;
	border-bottom: 1px solid var(--hairline);
	display: flex;
	gap: .8em;
	align-items: baseline;
	font-size: 1rem;
}
.sb-block .content ul li::before {
	content: "○";
	color: var(--sb-accent);
	font-size: .8em;
}
@media (max-width: 860px) {
	.sb-block { grid-template-columns: 1fr; gap: 2rem; }
}

/* Sub-brand gallery — renders a folder of images */
.sb-gallery {
	max-width: var(--maxw);
	margin: 5rem auto;
	padding: 0 var(--gutter);
}
.sb-gallery-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}
.sb-gallery-head h2 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	letter-spacing: -0.04em;
	text-transform: lowercase;
	line-height: .95;
}
.sb-gallery-head h2 .italic {
	font-family: var(--font-accent-serif);
	font-style: italic;
	font-weight: 300;
	color: var(--sb-accent-deep);
}
.sb-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: .75rem;
}
.sb-gallery-grid figure {
	margin: 0;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--sb-surface-alt);
}
.sb-gallery-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s var(--ease), filter .4s var(--ease);
}
.sb-gallery-grid figure:hover img {
	transform: scale(1.04);
}

/* Hafn gets a slightly staggered visual rhythm — every 5th + 7th tile goes wide */
.sb-gallery-grid.hafn-grid figure:nth-child(5n) {
	grid-column: span 2;
	aspect-ratio: 2/1;
}
@media (max-width: 860px) {
	.sb-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
	.sb-gallery-grid.hafn-grid figure:nth-child(5n) {
		grid-column: span 2;
		aspect-ratio: 3/2;
	}
}
@media (max-width: 480px) {
	.sb-gallery-grid { grid-template-columns: 1fr; }
	.sb-gallery-grid.hafn-grid figure:nth-child(5n) { grid-column: span 1; aspect-ratio: 4/3; }
}

/* CTA strip at the bottom of every sub-brand page */
.sb-cta {
	max-width: var(--maxw);
	margin: 4rem auto 0;
	padding: 6rem var(--gutter) 3rem;
	border-top: 1px solid var(--hairline);
	text-align: center;
}
.sb-cta h2 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(2.5rem, 7vw, 6rem);
	letter-spacing: -0.045em;
	line-height: .95;
	text-transform: lowercase;
	max-width: 14ch;
	margin: 0 auto;
}
.sb-cta h2 .italic {
	font-family: var(--font-accent-serif);
	font-style: italic;
	font-weight: 300;
	color: var(--sb-accent-deep);
}
.sb-cta p {
	margin: 2rem auto 2.5rem;
	max-width: 48ch;
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.6;
}
.sb-cta .btn--solid {
	background: var(--sb-accent);
	border-color: var(--sb-accent);
	color: var(--sb-ink-on-accent);
}
.sb-cta .btn--solid:hover {
	background: var(--sb-accent-deep);
	border-color: var(--sb-accent-deep);
}

/* Package cards — used by Boost (sub-brand) AND any standard service
 * page that opts into pricing cards via .sb-packages (Drone, Photography,
 * Hafn, etc). Grid uses auto-fit so 2/3/4 cards all look balanced:
 *   - 4 cards on wide → 4 in a row
 *   - 3 cards on wide → 3 in a row
 *   - mid screens → 2 per row
 *   - mobile → stacked */
.sb-packages {
	max-width: var(--maxw);
	margin: 4rem auto;
	padding: 4rem var(--gutter);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
}

/* Token defaults for non-sub-brand pages that opt into the package UI.
 * Sub-brand pages already define these via body.sb-* — this rule only
 * fires when .sb-packages renders OUTSIDE a sub-brand body class, so
 * Drone/Photography/Hafn/Video pages get the global mona accent (teal)
 * rather than inheriting nothing. */
body:not(.sb) .sb-packages {
	--sb-surface:        var(--bg-alt);
	--sb-surface-alt:    var(--hairline);
	--sb-accent:         var(--accent);
	--sb-accent-deep:    var(--accent-deep);
	--sb-accent-soft:    var(--accent-soft);
	--sb-ink-on-accent:  #FFFFFF;
}
.pkg-card {
	background: var(--sb-surface);
	border-radius: var(--radius-lg);
	padding: 3rem 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	position: relative;
	overflow: hidden;
}
/* Featured (most-booked) card. Uses the brand-accent gradient as a
 * vivid colour block so it stands out from its siblings, with white
 * text for contrast in both light and dark modes.
 *
 * The previous version was background: var(--ink) + color: var(--bg)
 * which broke in dark mode (var(--ink) becomes near-white, the inner
 * text colours stayed hardcoded to a cream rgba — light text on light
 * card = unreadable). Sub-brand pages override this rule with their
 * own brand gradient (see body.sb-boost ... .is-featured). */
.pkg-card.is-featured {
	background: linear-gradient(160deg, var(--sb-accent) 0%, var(--sb-accent-deep, var(--sb-accent)) 100%);
	color: #FFFFFF;
}
.pkg-card.is-featured h3,
.pkg-card.is-featured .pkg-price,
.pkg-card.is-featured .pkg-tier { color: #FFFFFF; }
.pkg-card.is-featured .pkg-desc,
.pkg-card.is-featured ul li,
.pkg-card.is-featured .pkg-ideal { color: rgba(255, 255, 255, .88); }
.pkg-card.is-featured ul li::before { color: rgba(255, 255, 255, .9); }
.pkg-card.is-featured .pkg-price small { color: rgba(255, 255, 255, .7); }
.pkg-card .pkg-tier {
	font-family: var(--font-mono);
	font-size: .72rem;
	letter-spacing: .06em;
	text-transform: lowercase;
	color: var(--sb-accent);
}
.pkg-card h3 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	letter-spacing: -0.035em;
	text-transform: lowercase;
}
.pkg-card .pkg-price {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: -0.04em;
	color: var(--ink);
}
.pkg-card .pkg-price small {
	font-family: var(--font-mono);
	font-size: .8rem;
	color: var(--muted);
	letter-spacing: .02em;
	text-transform: lowercase;
	margin-left: .4em;
}
/* small element on the price (the /month / shoot / day suffix) — colour
 * already set in the consolidated is-featured block above. */
.pkg-card .pkg-desc {
	font-size: 1rem;
	line-height: 1.55;
	color: var(--muted);
	max-width: 36ch;
}
.pkg-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: .6em;
	font-size: .95rem;
	color: var(--ink);
}
.pkg-card ul li {
	display: flex;
	gap: .6em;
	align-items: baseline;
}
.pkg-card ul li::before {
	content: "○";
	color: var(--sb-accent);
	font-size: .75em;
}
/* (.pkg-card.is-featured ul li colour already set in the consolidated
 * is-featured block near the top — was a stale duplicate using a
 * hardcoded cream rgba that broke contrast in some sub-brand modes.) */
.pkg-card .pkg-ideal {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--hairline);
	font-family: var(--font-mono);
	font-size: .72rem;
	letter-spacing: .04em;
	text-transform: lowercase;
	color: var(--muted);
}
.pkg-card.is-featured .pkg-ideal {
	border-top-color: rgba(255, 255, 255, .25);
	/* colour already set in the consolidated is-featured block above */
}

/* Wide custom card — single horizontal banner that sits BELOW the
 * three-card grid for the bespoke / scope-to-brief tier. Splits the
 * card into two columns on desktop so the price + CTA on the right
 * stay anchored while the description and bullets read across left.
 * Mobile collapses to a single column stack. Used by Photography
 * (Brand Day) and Video (Full Production). */
.sb-package-wide {
	max-width: var(--maxw);
	margin: 0 auto 5rem;
	padding: 0 var(--gutter);
}
.pkg-card--wide {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
	padding: clamp(2.5rem, 4vw, 3.5rem);
	border-radius: var(--radius-lg);
	background: var(--sb-surface);
	border: 1px solid var(--hairline);
	position: relative;
	overflow: hidden;
}
body:not(.sb) .pkg-card--wide {
	background: var(--bg-alt);
	border-color: var(--hairline);
}
.pkg-card--wide::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 6px; height: 100%;
	background: var(--sb-accent);
}
.pkg-card--wide .pkg-card-wide-body { display: flex; flex-direction: column; gap: 1rem; }
.pkg-card--wide .pkg-tier { color: var(--sb-accent); }
.pkg-card--wide h3 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.8rem, 3.5vw, 2.4rem);
	letter-spacing: -.035em;
	text-transform: lowercase;
}
.pkg-card--wide .pkg-desc {
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--muted);
	max-width: 60ch;
}
.pkg-card--wide ul {
	list-style: none;
	margin: .5rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: .55em 1.5em;
	font-size: .95rem;
}
.pkg-card--wide ul li {
	display: flex;
	gap: .5em;
	align-items: baseline;
}
.pkg-card--wide ul li::before {
	content: '○';
	color: var(--sb-accent);
	font-size: .75em;
	flex-shrink: 0;
}
.pkg-card--wide .pkg-card-wide-cta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	padding-left: clamp(0rem, 2vw, 2rem);
	border-left: 1px solid var(--hairline);
}
.pkg-card--wide .pkg-price {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.6rem, 2.5vw, 2rem);
	letter-spacing: -.03em;
	line-height: 1;
}
.pkg-card--wide .pkg-price small {
	display: block;
	font-family: var(--font-mono);
	font-size: .65rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: .35rem;
}
.pkg-card--wide .pkg-note {
	font-size: .85rem;
	font-style: italic;
	color: var(--muted);
	margin: 0;
	max-width: 36ch;
}
.pkg-card--wide .pkg-cta {
	margin-top: 0;
	width: 100%;
}

@media (max-width: 768px) {
	.pkg-card--wide {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.pkg-card--wide .pkg-card-wide-cta {
		padding-left: 0;
		padding-top: 1.5rem;
		border-left: 0;
		border-top: 1px solid var(--hairline);
		align-items: stretch;
	}
}

/* Custom-scope note — small italic line that sits between the bullet
 * list and the CTA on the Growth card. Signals 'pricing scales with
 * scope, get in touch to discuss'. Inherits the surrounding text colour
 * so it auto-adapts on every brand variant + dark/light mode. */
.pkg-card .pkg-note {
	font-size: .85rem;
	line-height: 1.4;
	font-style: italic;
	opacity: .8;
	margin-top: .25rem;
}
.pkg-card .pkg-note a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.pkg-card .pkg-note a:hover { opacity: .65; }

/* Tier CTA — full-width button at the bottom of each package card.
 *
 * Solid brand-accent fill so it pops on any card background (dark Boost
 * canvas, cream Stori canvas, dark Core canvas). Previous outline style
 * relied on currentColor for the border + global --ink for the text,
 * which made the button invisible on Boost (dark card + dark text from
 * --ink in light-mode-toggle). Solid fill removes that whole class of
 * bug by always contrasting against the card surface. */
.pkg-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	margin-top: 1.5rem;
	padding: .9rem 1.2rem;
	font-family: inherit;
	font-size: .95rem;
	font-weight: 600;
	letter-spacing: -.01em;
	text-decoration: none;
	border: 0;
	border-radius: 999px;
	background: var(--sb-accent, #141616);
	color: var(--sb-ink-on-accent, #fff);
	transition: filter .2s ease, transform .2s ease, box-shadow .2s ease;
	box-shadow: 0 2px 12px -4px rgba(0, 0, 0, .25);
}
.pkg-cta:hover,
.pkg-cta:focus-visible {
	filter: brightness(1.1);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px -6px rgba(0, 0, 0, .35);
}
.pkg-cta:focus-visible {
	outline: 2px solid var(--sb-ink-on-accent, #fff);
	outline-offset: 2px;
}

/* Featured card sits on the brand-accent gradient itself, so the CTA
 * needs to invert: solid white pill with the accent colour as the text. */
.pkg-card.is-featured .pkg-cta {
	background: #fff;
	color: var(--sb-accent, #141616);
}
.pkg-card.is-featured .pkg-cta:hover,
.pkg-card.is-featured .pkg-cta:focus-visible {
	background: var(--sb-ink-on-accent, #fff);
	filter: none;
	transform: translateY(-1px);
	box-shadow: 0 8px 24px -6px rgba(0, 0, 0, .45);
}

/* Core tier CTA — same pattern, scoped to core's typography rhythm. */
.core-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	margin-top: 1.25rem;
	padding: .8rem 1.1rem;
	font-family: inherit;
	font-size: .95rem;
	font-weight: 700;
	letter-spacing: .01em;
	text-decoration: none;
	border: 1px solid currentColor;
	border-radius: 8px;
	color: var(--core-cream, #ECE6D6);
	background: transparent;
	transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}
.core-cta:hover,
.core-cta:focus-visible {
	background: var(--core-orange, #E1722E);
	color: var(--core-ink, #141616);
	border-color: var(--core-orange, #E1722E);
	transform: translateY(-1px);
}
.core-price--feature .core-cta {
	background: var(--core-orange, #E1722E);
	color: var(--core-ink, #141616);
	border-color: var(--core-orange, #E1722E);
}
.core-price--feature .core-cta:hover,
.core-price--feature .core-cta:focus-visible {
	background: var(--core-cream, #ECE6D6);
	color: var(--core-ink, #141616);
	border-color: var(--core-cream, #ECE6D6);
}

@media (max-width: 760px) {
	.sb-packages { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
 * 3. STORI — intimate editorial
 * --------------------------------------------------------- */

body.sb-stori .sb-hero {
	padding-top: 10rem;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: clamp(3rem, 6vw, 6rem);
	align-items: end;
}
body.sb-stori .sb-hero h1 {
	font-size: clamp(3.5rem, 11vw, 10rem);
	letter-spacing: -0.03em;
	line-height: .88;
}
body.sb-stori .sb-hero h1 .italic {
	color: var(--sb-accent-deep);
}
body.sb-stori .hero-quote {
	border-left: 1px solid var(--sb-accent);
	padding-left: 1.5rem;
	font-family: var(--font-accent-serif);
	font-style: italic;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.35;
	color: var(--ink);
	letter-spacing: -0.01em;
	max-width: 32ch;
}
body.sb-stori .hero-quote cite {
	display: block;
	margin-top: 1.2rem;
	font-style: normal;
	font-family: var(--font-mono);
	font-size: .72rem;
	letter-spacing: .06em;
	color: var(--muted);
	text-transform: lowercase;
}

/* Ring motif — top-right of hero */
body.sb-stori .sb-motif--ring {
	top: 7rem;
	right: var(--gutter);
	width: clamp(80px, 10vw, 140px);
	height: clamp(80px, 10vw, 140px);
}
body.sb-stori .sb-motif--ring circle {
	fill: none;
	stroke: var(--sb-accent);
	stroke-width: 1.3;
}

/* Stori section: cream-background story strip */
body.sb-stori .sb-strip {
	background: var(--sb-surface);
	margin: 5rem 0;
	padding: 6rem 0;
}
body.sb-stori .sb-strip .inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	align-items: center;
}
body.sb-stori .sb-strip .ph {
	aspect-ratio: 3/4;
	border-radius: var(--radius-lg);
	overflow: hidden;
}
body.sb-stori .sb-strip .ph-stori {
	background: linear-gradient(135deg, var(--sb-accent-soft) 0%, var(--sb-surface-alt) 100%);
}
body.sb-stori .sb-strip h2 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(2.4rem, 5vw, 4rem);
	letter-spacing: -0.04em;
	text-transform: lowercase;
	line-height: .95;
}
body.sb-stori .sb-strip h2 .italic {
	font-family: var(--font-accent-serif);
	font-style: italic;
	font-weight: 300;
	color: var(--sb-accent-deep);
}
body.sb-stori .sb-strip p {
	margin-top: 1.5rem;
	font-size: 1.08rem;
	line-height: 1.65;
	color: var(--ink);
	max-width: 52ch;
}
@media (max-width: 860px) {
	body.sb-stori .sb-hero { grid-template-columns: 1fr; }
	body.sb-stori .sb-strip .inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------------------------------------------------------
 * 4. HAFN — architectural grid
 * --------------------------------------------------------- */

/* Hafn typography — Cormorant Garamond italic display + Jost body.
   Overrides apply only to content, never to the Mona nav/footer wordmark. */
body.sb-hafn .sb-hero h1,
body.sb-hafn .sb-hero h2,
body.sb-hafn .sb-block h2,
body.sb-hafn .sb-gallery-head h2,
body.sb-hafn .sb-cta h2,
body.sb-hafn .hafn-pullquote {
	font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-weight: 400;
	text-transform: none; /* Cormorant is a serif — lowercase forced looks odd */
	letter-spacing: -0.015em;
}
body.sb-hafn .sb-hero h1 { font-weight: 400; }
body.sb-hafn .sb-hero .lede,
body.sb-hafn .sb-hero .sub,
body.sb-hafn .sb-block .content,
body.sb-hafn .sb-block .content p,
body.sb-hafn .sb-gallery-grid figcaption,
body.sb-hafn .hafn-strap,
body.sb-hafn .hafn-clients,
body.sb-hafn .sb-cta p {
	font-family: 'Jost', 'Inter Tight', ui-sans-serif, system-ui, sans-serif;
	font-weight: 300;
	letter-spacing: 0;
}
body.sb-hafn .sb-block h2 .italic,
body.sb-hafn .sb-hero h1 .italic,
body.sb-hafn .sb-cta h2 .italic,
body.sb-hafn .sb-gallery-head h2 .italic {
	/* Inside Cormorant italic, the "italic" accent spans don't need extra styling —
	   everything is already italic Cormorant. Just tint gold. */
	font-family: inherit;
	font-style: italic;
	font-weight: 500;
	color: var(--sb-accent-deep);
}

/* ---------- Hafn hero — editorial magazine cover.
   The hero is a FIXED dark block in both light and dark mode — it's the
   editorial anchor with the signature property photograph behind a dark
   overlay. The rest of the page flips cream ↔ charcoal around it. */
body.sb-hafn .sb-hero {
	background: #1A1A1A;
	color: #F5F2ED;
	max-width: none;
	margin: 0;
	padding: clamp(7rem, 14vw, 11rem) var(--gutter) clamp(4rem, 8vw, 7rem);
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

/* Signature hero photo + dark gradient overlay */
body.sb-hafn .sb-hero .hero-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	z-index: 0;
	/* Subtle film-grain feel via slight desaturation + warm tint preservation */
	filter: saturate(.94) contrast(1.02);
}
body.sb-hafn .sb-hero .hero-bg-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	/* Light, directional overlay — keeps text readable on the left while letting
	   the copper tones of the photograph come through on the right. */
	background:
		linear-gradient(
			to right,
			rgba(15, 15, 13, .68) 0%,
			rgba(15, 15, 13, .48) 40%,
			rgba(15, 15, 13, .28) 70%,
			rgba(15, 15, 13, .42) 100%
		),
		linear-gradient(
			to bottom,
			rgba(15, 15, 13, .18) 0%,
			rgba(15, 15, 13, 0)    25%,
			rgba(15, 15, 13, .35) 100%
		);
	pointer-events: none;
}
/* Content above the photo */
body.sb-hafn .sb-hero .inner,
body.sb-hafn .sb-hero .brand-label,
body.sb-hafn .sb-motif--h,
body.sb-hafn .hafn-regions {
	position: relative;
	z-index: 2;
}

/* Hero photo stays visible in both modes — it's the editorial anchor. */
body.sb-hafn .sb-hero .inner {
	max-width: var(--maxw);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(3rem, 6vw, 6rem);
	align-items: end;
	position: relative;
	z-index: 1;
}
body.sb-hafn .sb-hero .brand-label {
	color: var(--sb-accent);
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	letter-spacing: .2em;
	font-size: .7rem;
	text-transform: uppercase;
}
body.sb-hafn .sb-hero .brand-label::before { background: var(--sb-accent); }
/* Hero content uses fixed cream-on-dark values so it reads correctly over
   the photograph regardless of the page's light/dark mode. */
body.sb-hafn .sb-hero h1 {
	color: #F5F2ED;
	font-size: clamp(3.4rem, 10vw, 9rem);
	line-height: .95;
	letter-spacing: -0.02em;
}
body.sb-hafn .sb-hero h1 .italic {
	color: #C9A84C; /* antique gold — fixed on dark hero */
}
body.sb-hafn.dark .sb-hero h1 .italic { color: #D9B758; }

body.sb-hafn .sb-hero .brand-label {
	color: #C9A84C;
}
body.sb-hafn .sb-hero .brand-label::before { background: #C9A84C; }

body.sb-hafn .sb-hero .lede {
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(245, 242, 237, .82);
	max-width: 48ch;
	margin-top: 2rem;
	font-weight: 300;
}
body.sb-hafn .sb-hero .hafn-strap {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 300;
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	color: #F5F2ED;
	line-height: 1.35;
	border-left: 1px solid #C9A84C;
	padding-left: 1.5rem;
	max-width: 28ch;
}
body.sb-hafn .sb-hero .hafn-strap small {
	display: block;
	margin-top: 1.2rem;
	font-family: 'Jost', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: .7rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(245, 242, 237, .5);
}
body.sb-hafn .sb-hero .hafn-regions { color: rgba(245, 242, 237, .7); }
body.sb-hafn .sb-motif--h { color: #C9A84C; }

/* Fine gold hairline divider after the hero — only visible on Hafn */
body.sb-hafn .sb-hero::after {
	content: "";
	position: absolute;
	left: var(--gutter);
	right: var(--gutter);
	bottom: 0;
	height: 1px;
	background: var(--hf-accent);
	opacity: .35;
}

/* Wordmark H — small antique-gold monogram in the hero */
body.sb-hafn .sb-motif--h {
	top: clamp(7rem, 10vw, 9rem);
	right: var(--gutter);
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 300;
	font-size: clamp(4rem, 8vw, 7rem);
	color: var(--hf-accent);
	opacity: .4;
	line-height: 1;
	letter-spacing: -.04em;
}

@media (max-width: 860px) {
	body.sb-hafn .sb-hero .inner { grid-template-columns: 1fr; gap: 3rem; }
	body.sb-hafn .sb-motif--h { display: none; }
}

/* ---------- Hafn services — editorial 3-column with gold dividers ---------- */
body.sb-hafn .sb-services {
	max-width: var(--maxw);
	margin: clamp(5rem, 10vw, 7rem) auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}
body.sb-hafn .sb-services .svc-cell {
	padding: 2.5rem 2rem 2.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	border-top: 1px solid var(--hf-hairline);
}
body.sb-hafn .sb-services .svc-cell:not(:last-child) {
	margin-right: 1.5rem;
	padding-right: 1.5rem;
	border-right: 1px solid var(--hf-hairline);
}
body.sb-hafn .sb-services .svc-cell .num {
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	font-size: .65rem;
	letter-spacing: .2em;
	color: var(--hf-accent-deep);
	text-transform: uppercase;
}
body.sb-hafn .sb-services .svc-cell h3 {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(1.6rem, 2.6vw, 2.2rem);
	text-transform: none;
	letter-spacing: -0.015em;
	line-height: 1.1;
	color: var(--hf-ink);
}
body.sb-hafn .sb-services .svc-cell p {
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	color: var(--hf-ink-muted);
	font-size: .98rem;
	line-height: 1.6;
	margin: 0;
}
@media (max-width: 860px) {
	body.sb-hafn .sb-services { grid-template-columns: 1fr; }
	body.sb-hafn .sb-services .svc-cell:not(:last-child) {
		margin-right: 0;
		padding-right: 0;
		border-right: 0;
	}
}

/* ---------- Hafn pull-quote band (large italic Cormorant) ---------- */
body.sb-hafn .hafn-pullquote {
	max-width: var(--maxw);
	margin: clamp(4rem, 8vw, 7rem) auto;
	padding: 0 var(--gutter);
	font-size: clamp(2rem, 4.5vw, 3.75rem);
	line-height: 1.15;
	color: var(--hf-ink);
	max-width: 22ch;
	font-style: italic;
}
body.sb-hafn .hafn-pullquote::before {
	content: "“";
	display: inline-block;
	margin-right: .1em;
	color: var(--hf-accent);
	font-size: 1.2em;
	line-height: 0;
	vertical-align: -0.25em;
}
body.sb-hafn .hafn-pullquote::after { content: "”"; color: var(--hf-accent); }

/* ---------- Hafn content blocks — solid text for readability ---------- */
body.sb-hafn .sb-block { border-top-color: var(--hf-hairline); }
body.sb-hafn .sb-block h2 { color: var(--hf-ink); }
body.sb-hafn .sb-block .content { color: var(--hf-ink); }
body.sb-hafn .sb-block .content p { color: var(--hf-ink); opacity: .9; }
body.sb-hafn .sb-block .content p em { opacity: 1; color: var(--hf-ink); }
body.sb-hafn .sb-block .content ul li {
	border-bottom-color: var(--hf-hairline);
	color: var(--hf-ink);
}
body.sb-hafn .sb-block .content ul li::before { color: var(--hf-accent); }

/* Clients strip */
body.sb-hafn .hafn-clients {
	max-width: var(--maxw);
	margin: clamp(4rem, 8vw, 6rem) auto;
	padding: 3rem var(--gutter);
	border-top: 1px solid var(--hf-hairline);
	border-bottom: 1px solid var(--hf-hairline);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem 2.5rem;
}
body.sb-hafn .hafn-clients .label {
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	font-size: .65rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--hf-accent-deep);
}
body.sb-hafn .hafn-clients span.client {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(1.1rem, 1.6vw, 1.35rem);
	color: var(--hf-ink);
}

/* Regions strip — inside the hero, uses hero text colour */
body.sb-hafn .hafn-regions {
	max-width: var(--maxw);
	margin: 3rem auto 0;
	padding: 0 var(--gutter);
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 300;
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	color: var(--hf-page);
	opacity: .7;
	letter-spacing: -0.01em;
	position: relative;
	z-index: 1;
}

/* Gallery head uses serif italic treatment on Hafn */
body.sb-hafn .sb-gallery-head h2 {
	font-size: clamp(2.2rem, 4.5vw, 3.75rem);
	font-weight: 400;
	color: var(--hf-ink);
}
body.sb-hafn .sb-gallery-head .section-label { color: var(--hf-accent-deep); }
body.sb-hafn .sb-gallery-head .section-label::before {
	border-color: var(--hf-accent);
	background: var(--hf-accent);
}
body.sb-hafn .sb-gallery-grid figure { background: var(--hf-hairline); }

/* CTA */
body.sb-hafn .sb-cta { border-top-color: var(--hf-hairline); }
body.sb-hafn .sb-cta h2 {
	font-size: clamp(2.5rem, 6vw, 5rem);
	line-height: 1;
	color: var(--hf-ink);
}
body.sb-hafn .sb-cta p { color: var(--hf-ink-muted); }
body.sb-hafn .sb-cta .btn--solid {
	background: var(--hf-accent);
	border-color: var(--hf-accent);
	color: #1A1A1A;
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: .8rem;
	padding: 1.1em 1.6em;
}
body.sb-hafn .sb-cta .btn--solid:hover {
	background: var(--hf-accent-deep);
	border-color: var(--hf-accent-deep);
	color: #F5F2ED;
}

/* ---------------------------------------------------------
 * 5. CORE — dark high-contrast
 * --------------------------------------------------------- */

body.sb-core .sb-hero {
	padding: 9rem var(--gutter) 7rem;
	background: var(--co-page);
	color: var(--co-ink);
	max-width: none;
	margin: 0;
	position: relative;
	overflow: hidden;
}
body.sb-core .sb-hero::before {
	/* Diagonal bar motif — orange accent stroke bottom-right */
	content: "";
	position: absolute;
	right: -20%;
	bottom: -30%;
	width: 60%;
	height: 80%;
	background: var(--sb-accent);
	opacity: .14;
	transform: rotate(-18deg);
	transform-origin: top left;
}
body.sb-core .sb-hero .inner {
	max-width: var(--maxw);
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
body.sb-core .sb-hero .brand-label { color: var(--sb-accent); }
body.sb-core .sb-hero .brand-label::before { background: var(--sb-accent); }
body.sb-core .sb-hero h1 {
	color: var(--co-ink);
	font-weight: 600;
	font-size: clamp(3.5rem, 12vw, 12rem);
	letter-spacing: -0.03em;
}
body.sb-core .sb-hero h1 .italic { color: var(--sb-accent); }
body.sb-core .sb-hero .sub {
	font-size: 1.1rem;
	color: var(--co-ink-muted);
	max-width: 44ch;
	line-height: 1.55;
	margin-top: 2rem;
	letter-spacing: -0.005em;
}

/* Core stats strip */
body.sb-core .sb-hero .hero-stats {
	margin-top: clamp(3rem, 6vw, 4.5rem);
	padding-top: 2rem;
	border-top: 1px solid var(--co-hairline);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
body.sb-core .sb-hero .hero-stats .stat .val {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--co-ink);
}
body.sb-core .sb-hero .hero-stats .stat .val .italic {
	font-family: var(--font-accent-serif);
	font-style: italic;
	font-weight: 300;
	color: var(--sb-accent);
}
body.sb-core .sb-hero .hero-stats .stat .lbl {
	margin-top: .6em;
	font-family: var(--font-mono);
	font-size: .7rem;
	letter-spacing: .04em;
	text-transform: lowercase;
	color: var(--co-ink-muted);
	opacity: .8;
}
@media (max-width: 860px) {
	body.sb-core .sb-hero .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* Core body blocks — render on dark canvas */
body.sb-core .sb-block { border-top-color: var(--co-hairline); }
body.sb-core .sb-block h2 { color: var(--co-ink); }
body.sb-core .sb-block h2 .italic { color: var(--sb-accent); }
body.sb-core .sb-block .content { color: var(--co-ink); }
body.sb-core .sb-block .content p { color: var(--co-ink); opacity: .9; }
body.sb-core .sb-block .content ul li {
	border-bottom-color: var(--co-hairline);
	color: var(--co-ink);
}
body.sb-core .sb-block .content ul li::before { color: var(--sb-accent); }

/* Core CTA — orange button on dark */
body.sb-core .sb-cta { border-top-color: var(--co-hairline); }
body.sb-core .sb-cta h2 { color: var(--co-ink); }
body.sb-core .sb-cta h2 .italic { color: var(--sb-accent); }
body.sb-core .sb-cta p { color: var(--co-ink-muted); }
body.sb-core .sb-cta .btn--solid {
	background: var(--sb-accent);
	border-color: var(--sb-accent);
	color: #FFFFFF;
}
body.sb-core .sb-cta .btn--solid:hover {
	background: var(--sb-accent-deep);
	border-color: var(--sb-accent-deep);
}

/* Core gallery + section labels on dark */
body.sb-core .section-label { color: var(--co-ink-muted); }
body.sb-core .section-label::before { border-color: var(--co-ink-muted); }
body.sb-core .section-label.on { color: var(--sb-accent); }
body.sb-core .section-label.on::before { background: var(--sb-accent); border-color: var(--sb-accent); }
body.sb-core .sb-gallery-grid figure { background: var(--sb-surface-alt); }

/* Core FAQ on dark */
body.sb-core .faq-section { color: var(--co-ink); }
body.sb-core .faq-title { color: var(--co-ink); }
body.sb-core .faq-intro { color: var(--co-ink-muted); }
body.sb-core .faq-list { border-top-color: var(--co-hairline); }
body.sb-core .faq-item { border-bottom-color: var(--co-hairline); }
body.sb-core .faq-item summary { color: var(--co-ink); }
body.sb-core .faq-item summary:hover { color: var(--sb-accent); }
body.sb-core .faq-toggle { color: var(--co-ink-muted); }
body.sb-core .faq-item[open] .faq-toggle { color: var(--sb-accent); }
body.sb-core .faq-a { color: var(--co-ink-muted); }
body.sb-core .faq-more { border-top-color: var(--co-hairline); }

/* ---------------------------------------------------------
 * 6. BOOST — kinetic & modern
 * --------------------------------------------------------- */

body.sb-boost .sb-hero {
	padding-top: 10rem;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: clamp(3rem, 6vw, 6rem);
	align-items: stretch;
}
body.sb-boost .sb-hero .hero-left .brand-label { color: var(--sb-accent); }
body.sb-boost .sb-hero .hero-left .brand-label::before { background: var(--sb-accent); }
body.sb-boost .sb-hero h1 {
	color: var(--bo-ink);
	font-size: clamp(3rem, 9.5vw, 8rem);
}
body.sb-boost .sb-hero h1 .italic { color: var(--sb-accent-deep); /* lighter violet for legibility */ }
body.sb-boost .sb-hero .sub {
	margin-top: 2rem;
	font-size: 1.08rem;
	color: var(--bo-ink);
	opacity: .85;
	max-width: 44ch;
	line-height: 1.55;
}
body.sb-boost .sb-hero .hero-welsh {
	display: block;
	margin-top: 1rem;
	font-family: var(--font-accent-serif);
	font-style: italic;
	font-weight: 300;
	color: var(--bo-ink-muted);
}

/* Boost reel preview — vertical 9:16 card with lightweight social montage */
body.sb-boost .hero-reel {
	position: relative;
	isolation: isolate;
	width: clamp(200px, 24vw, 280px);
	aspect-ratio: 9/16;
	margin-left: auto;
	background: linear-gradient(160deg, var(--sb-accent) 0%, var(--sb-accent-deep) 100%);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 32px 64px -24px rgba(20,19,17,.25);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.5rem 1.25rem;
}
body.sb-boost .hero-reel::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(12,10,8,.52) 0%, rgba(12,10,8,.08) 42%, rgba(12,10,8,.62) 100%),
		radial-gradient(circle at 30% 20%, rgba(255,255,255,.25), transparent 60%),
		radial-gradient(circle at 70% 80%, rgba(255,255,255,.15), transparent 55%);
	pointer-events: none;
	z-index: 1;
}
body.sb-boost .hero-reel--video {
	background: #11100e;
}
body.sb-boost .boost-reel-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}
body.sb-boost .hero-reel .reel-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-mono);
	font-size: .66rem;
	letter-spacing: .06em;
	text-transform: lowercase;
	color: rgba(255,255,255,.85);
	position: relative;
	z-index: 2;
	text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
body.sb-boost .hero-reel .reel-top .dot {
	display: inline-block;
	width: 7px; height: 7px;
	border-radius: 50%;
	background: #fff;
	margin-right: .4em;
	animation: livePulse 2s ease-in-out infinite;
}
body.sb-boost .hero-reel .reel-metrics {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: .85rem;
	font-family: var(--font-mono);
	font-size: .7rem;
	letter-spacing: .04em;
	text-transform: lowercase;
	color: rgba(255,255,255,.9);
	position: relative;
	z-index: 2;
	text-shadow: 0 1px 16px rgba(0,0,0,.45);
}
body.sb-boost .hero-reel .reel-metrics .metric {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-top: .55rem;
	border-top: 1px solid rgba(255,255,255,.18);
}
body.sb-boost .hero-reel .reel-metrics .metric strong {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.35rem;
	letter-spacing: -0.025em;
	color: #fff;
}
body.sb-boost .hero-reel .reel-metrics .metric .delta {
	color: #fff;
	opacity: .7;
}

/* Burst motif — small radiating accent mark */
body.sb-boost .sb-motif--burst {
	top: 8rem;
	right: calc(var(--gutter) + 3rem);
	width: 40px; height: 40px;
}
body.sb-boost .sb-motif--burst line {
	stroke: var(--sb-accent);
	stroke-width: 1.5;
	stroke-linecap: round;
	transform-origin: center;
	animation: burstSpin 12s linear infinite;
}
@keyframes burstSpin {
	to { transform: rotate(360deg); }
}

@media (max-width: 860px) {
	body.sb-boost .sb-hero { grid-template-columns: 1fr; }
	body.sb-boost .hero-reel { margin-left: 0; }
}

/* Boost body blocks — render on dark canvas */
body.sb-boost .sb-block { border-top-color: var(--bo-hairline); }
body.sb-boost .sb-block h2 { color: var(--bo-ink); }
body.sb-boost .sb-block h2 .italic { color: var(--sb-accent-deep); }
body.sb-boost .sb-block .content { color: var(--bo-ink); }
body.sb-boost .sb-block .content p { color: var(--bo-ink); opacity: .9; }
body.sb-boost .sb-block .content ul li {
	border-bottom-color: var(--bo-hairline);
	color: var(--bo-ink);
}
body.sb-boost .sb-block .content ul li::before { color: var(--sb-accent); }

/* Boost packages on dark — invert default treatment */
body.sb-boost .sb-packages .pkg-card {
	background: var(--sb-surface-alt);
	color: var(--bo-ink);
}
body.sb-boost .sb-packages .pkg-card h3,
body.sb-boost .sb-packages .pkg-card .pkg-price { color: var(--bo-ink); }
body.sb-boost .sb-packages .pkg-card .pkg-desc,
body.sb-boost .sb-packages .pkg-card ul li,
body.sb-boost .sb-packages .pkg-card .pkg-ideal { color: var(--bo-ink-muted); }
body.sb-boost .sb-packages .pkg-card .pkg-tier { color: var(--sb-accent); }
body.sb-boost .sb-packages .pkg-card .pkg-ideal { border-top-color: var(--bo-hairline); }
body.sb-boost .sb-packages .pkg-card.is-featured {
	background: linear-gradient(160deg, var(--sb-accent) 0%, var(--sb-accent-soft) 100%);
}
body.sb-boost .sb-packages .pkg-card.is-featured h3,
body.sb-boost .sb-packages .pkg-card.is-featured .pkg-price,
body.sb-boost .sb-packages .pkg-card.is-featured .pkg-tier { color: #FFFFFF; }
body.sb-boost .sb-packages .pkg-card.is-featured .pkg-desc,
body.sb-boost .sb-packages .pkg-card.is-featured ul li,
body.sb-boost .sb-packages .pkg-card.is-featured .pkg-ideal { color: rgba(255,255,255,.85); }

/* Boost CTA */
body.sb-boost .sb-cta { border-top-color: var(--bo-hairline); }
body.sb-boost .sb-cta h2 { color: var(--bo-ink); }
body.sb-boost .sb-cta h2 .italic { color: var(--sb-accent-deep); }
body.sb-boost .sb-cta p { color: var(--bo-ink-muted); }
body.sb-boost .sb-cta .btn--solid {
	background: var(--sb-accent);
	border-color: var(--sb-accent);
	color: #FFFFFF;
}
body.sb-boost .sb-cta .btn--solid:hover {
	background: var(--sb-accent-soft);
	border-color: var(--sb-accent-soft);
	color: #FFFFFF;
}

/* Boost section labels on dark */
body.sb-boost .section-label { color: var(--bo-ink-muted); }
body.sb-boost .section-label::before { border-color: var(--bo-ink-muted); }
body.sb-boost .section-label.on { color: var(--sb-accent); }
body.sb-boost .section-label.on::before { background: var(--sb-accent); border-color: var(--sb-accent); }

/* Boost FAQ on dark */
body.sb-boost .faq-section { color: var(--bo-ink); }
body.sb-boost .faq-title { color: var(--bo-ink); }
body.sb-boost .faq-intro { color: var(--bo-ink-muted); }
body.sb-boost .faq-list { border-top-color: var(--bo-hairline); }
body.sb-boost .faq-item { border-bottom-color: var(--bo-hairline); }
body.sb-boost .faq-item summary { color: var(--bo-ink); }
body.sb-boost .faq-item summary:hover { color: var(--sb-accent-deep); }
body.sb-boost .faq-toggle { color: var(--bo-ink-muted); }
body.sb-boost .faq-item[open] .faq-toggle { color: var(--sb-accent); }
body.sb-boost .faq-a { color: var(--bo-ink-muted); }
body.sb-boost .faq-more { border-top-color: var(--bo-hairline); }
