/*
Theme Name: Sunday Roof
Theme URI: https://sundayroof.com
Author: muthafunk
Description: SEO-, accessibility- and performance-first block theme for local service businesses. Built for Sunday Roof Co (roofing & gutters, Kansas City).
Version: 0.1.0
Requires at least: 6.7
Tested up to: 7.0
Requires PHP: 8.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sunday-roof
Tags: block-theme, full-site-editing, accessibility-ready, blog, business
*/

:where(a, button, input, summary):focus-visible {
	outline: 3px solid var(--wp--preset--color--secondary);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

/* =========================================================
   Sunday Roof — design layer
   Signature: "ridgeline" (roof-pitch geometry) + architectural
   slate with a copper accent. Restraint everywhere but the ridge.
   ========================================================= */

:root {
	--sr-ridge: clamp(1.5rem, 4vw, 3.25rem);
	--sr-shadow: 0 14px 34px -16px rgba(20, 22, 25, 0.28);
	--sr-shadow-sm: 0 6px 18px -10px rgba(20, 22, 25, 0.22);
}

/* --- Eyebrow label (structure that encodes section role) --- */
.sr-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--wp--preset--color--secondary);
	font-family: var(--wp--preset--font-family--heading);
}

/* --- Hero: architectural slate; ridge rule accent --- */
.sunday-roof-hero {
	position: relative;
	isolation: isolate;
	background:
		radial-gradient(120% 90% at 15% 0%, color-mix(in srgb, var(--sr-accent-2) 88%, white 6%) 0%, transparent 55%),
		linear-gradient(160deg, color-mix(in srgb, var(--sr-accent-2), var(--sr-ink) 25%) 0%, color-mix(in srgb, var(--sr-accent-2), var(--sr-ink) 55%) 100%);
}
.sunday-roof-hero :where(h1) { letter-spacing: -0.02em; }
/* Panel-controlled hero overlay darkness (--sr-hero-dim, 0..1) overrides the
   block's fixed dim class. */
.sunday-roof-hero > .wp-block-cover__background { opacity: var(--sr-hero-dim, 0.7) !important; }

/* --- The ridgeline: a section whose top rises to an off-centre roof apex,
       overlapping the block above it. Used once as the hero→content seam. --- */
.sr-roofline-top { position: relative; }
/* Dark roof-peak shape — follows the page background token. */
.sr-roofline-top::before {
	content: "";
	position: absolute; left: 0; right: 0; top: 0;
	height: clamp(32px, 4vw, 60px);
	transform: translateY(calc(-100% + 1px));
	background: var(--sr-ink);
	clip-path: polygon(0% 100%, 33.75% 6.45%, 100% 100%);
	pointer-events: none;
	z-index: 2;
}
/* Accent ridge line on top — follows the accent token via a mask. */
.sr-roofline-top::after {
	content: "";
	position: absolute; left: 0; right: 0; top: 0;
	height: clamp(32px, 4vw, 60px);
	transform: translateY(calc(-100% + 1px));
	background: var(--sr-accent);
	-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2062'%20preserveAspectRatio='none'%3E%3Cpolyline%20points='0,62%20486,4%201440,62'%20fill='none'%20stroke='%23fff'%20stroke-width='2.5'%20stroke-linejoin='round'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
	mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2062'%20preserveAspectRatio='none'%3E%3Cpolyline%20points='0,62%20486,4%201440,62'%20fill='none'%20stroke='%23fff'%20stroke-width='2.5'%20stroke-linejoin='round'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
	pointer-events: none;
	z-index: 3;
}

/* --- Buttons: confident, subtle motion --- */
.wp-block-button__link {
	transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 600;
}
.wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: var(--sr-shadow-sm);
}

/* --- FAQ accordion (native details/summary; a11y-friendly) --- */
.sr-faq details {
	border-bottom: 1px solid var(--wp--preset--color--muted);
}
.sr-faq summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.1rem 0;
	font-weight: 600;
	font-family: var(--wp--preset--font-family--heading);
}
.sr-faq summary::-webkit-details-marker { display: none; }
.sr-faq summary::after {
	content: "+";
	color: var(--wp--preset--color--secondary);
	font-size: 1.5rem;
	line-height: 1;
	transition: transform 0.2s ease;
}
.sr-faq details[open] summary::after { content: "\2013"; }

/* --- Sticky mobile call bar (highest-ROI conversion element on mobile) --- */
.sr-callbar {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 200;
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--wp--preset--color--muted);
	box-shadow: 0 -6px 20px -10px rgba(20, 22, 25, 0.4);
}
.sr-callbar a {
	padding: 0.95rem 0.5rem;
	text-align: center;
	font-weight: 700;
	text-decoration: none;
	font-family: var(--wp--preset--font-family--heading);
}
.sr-callbar a.is-call { background: var(--wp--preset--color--primary); color: var(--wp--preset--color--base); }
.sr-callbar a.is-quote { background: var(--wp--preset--color--secondary); color: var(--wp--preset--color--contrast); }
@media (max-width: 600px) {
	.sr-callbar { display: grid; }
	body { padding-bottom: 3.4rem; }
}

/* --- Process steps: real sequence → leading-zero counter --- */
.sr-steps { counter-reset: sr-step; }
.sr-step { counter-increment: sr-step; }
.sr-step__n {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--wp--preset--color--secondary);
	line-height: 1;
}
.sr-step__n::before { content: counter(sr-step, decimal-leading-zero); }

/* --- Hero polish --- */
.sunday-roof-hero { color: var(--wp--preset--color--base); }
.sunday-roof-hero .sr-eyebrow { color: color-mix(in srgb, var(--sr-accent), white 25%); }
.sr-hero__rating .sr-stars { color: var(--wp--preset--color--secondary); letter-spacing: 2px; }
.sr-hero__rating { opacity: 0.92; }

/* --- Photo service cards --- */
.sr-svc-card { overflow: hidden; border-radius: 12px; }
.sr-svc-card .wp-block-cover__image-background {
	transition: transform 0.5s ease;
}
.sr-svc-card:hover .wp-block-cover__image-background { transform: scale(1.06); }
.sr-svc-card h3 { margin: 0; }
.sr-svc-card__link a { color: var(--wp--preset--color--base); text-decoration: none; }
.sr-svc-card:hover .sr-svc-card__link a { color: color-mix(in srgb, var(--sr-accent), white 25%); }
.sr-svc-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20, 22, 25, 0.55), transparent 55%);
	pointer-events: none;
}
.sr-svc-card .wp-block-cover__inner-container { position: relative; z-index: 1; width: 100%; }

/* --- Icons --- */
.sr-icon { display: inline-block; vertical-align: middle; }

/* --- Trust bar (icon rows on slate) --- */
/* Trust & call bands sit on the accent-2 colour in every palette (a saturated
   brand band). Force their text light so it reads on that band in both light
   and dark themes — otherwise the theme's text token flips dark on light
   palettes and disappears. Icons keep their own accent colour below. */
.sr-trustbar.has-base-color { color: #fff !important; }
.sr-callbar a.is-call { color: #fff; }
.sr-trustbar .sr-trust__row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}
.sr-trustbar .sr-trust__ico { color: var(--wp--preset--color--secondary); display: inline-flex; flex: 0 0 auto; }
.sr-trustbar .sr-trust__txt { text-align: left; line-height: 1.3; font-size: 0.95rem; }
.sr-trustbar .sr-trust__txt strong { font-family: var(--wp--preset--font-family--heading); }
@media (max-width: 781px) {
	.sr-trustbar .wp-block-column { margin-bottom: 0.5rem; }
}

/* --- Content-aware scroll reveals (no-JS / reduced-motion = fully visible).
   JS adds .sr-a + a direction, and .is-visible when the element enters view;
   --i staggers items within a row. Headings/hero/FAQ/map get none. --- */
.sr-a { opacity: 0; transition: opacity 0.55s ease, transform 0.55s ease; transition-delay: calc(var(--i, 0) * 70ms); will-change: opacity, transform; }
.sr-a--up { transform: translateY(24px); }
.sr-a--left { transform: translateX(-20px); }
.sr-a--scale { transform: scale(0.94); }
.sr-a.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.sr-a { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================================================
   DARK THEME
   ========================================================= */
:root {
	--sr-ink: #0d1117;          /* page */
	--sr-panel: #151b24;        /* elevated section */
	--sr-card: #1b2331;         /* card */
	--sr-line: #2a3342;         /* hairline */
	--sr-text: #e7eaee;         /* primary text */
	--sr-text-2: #cfd6de;       /* secondary body text */
	--sr-heading: #ffffff;      /* headings / strong text */
	--sr-dim: #9aa5b4;          /* muted text */
	--sr-accent: #d67b40;       /* copper, brightened for dark */
	--sr-accent-2: #3d6591;     /* slate-blue lighter */
	--sr-scheme: dark;          /* native-control scheme; set to "light" by light palettes */
}

body { background: var(--sr-ink); color: var(--sr-text); }
/* theme.json sets the global text colour to the `contrast` preset, which we
   bridge to --sr-ink (dark) for the footer/hero bands. That would fight this
   body colour at equal specificity and win by load order on some engines
   (dark-on-dark text). Pin the body text with higher specificity so --sr-text
   always wins, whatever the CSS order. */
html body { color: var(--sr-text); }

/* Dark header (site-wide).
   IMPORTANT: the blurred background lives on a ::before pseudo, NOT on the
   header element. backdrop-filter (or transform/filter) on the header itself
   would make it a containing block, trapping the mobile nav overlay's
   position:fixed inside the header's height. Keeping the header free of those
   properties means the overlay is fixed to the viewport from the first frame —
   no jump, no reactive :has hack. */
.sunday-roof-header {
	position: sticky; top: 0; z-index: 200;
	padding-block: 0.75rem;
	border-bottom: 1px solid var(--sr-line);
	transition: border-color 0.3s ease;
}
/* On non-hero pages the header is the inner group, whose containing block is the
   short <header> template-part wrapper — so sticky on the inner alone can't pin.
   Make the wrapper itself sticky (its containing block is the tall page). Hero
   pages use a fixed inner header, so exclude them. */
body:not(.sr-hero-header) header.wp-block-template-part { position: sticky; top: 0; z-index: 200; }
.sunday-roof-header::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: color-mix(in srgb, var(--sr-ink) 82%, transparent);
	backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
	transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
/* Hero pages (home + service + location): transparent header floating OVER the
   hero photo; gains a bg once scrolled. Added via body class sr-hero-header. */
.sr-hero-header .sunday-roof-header { position: fixed; top: 0; left: 0; right: 0; border-bottom-color: transparent; }
.sr-hero-header .sunday-roof-header::before { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.sr-hero-header .sunday-roof-header.is-scrolled { border-bottom-color: var(--sr-line); }
.sr-hero-header .sunday-roof-header.is-scrolled::before { background: color-mix(in srgb, var(--sr-ink) 90%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.sunday-roof-header a { color: var(--sr-text); }
.sunday-roof-header .sr-header-phone a { color: var(--sr-text); text-decoration: none; }
.wp-block-site-title a { color: var(--sr-text) !important; }
.sunday-roof-header .wp-block-site-logo { line-height: 0; }
.sunday-roof-header .wp-block-site-logo img { width: auto !important; height: 56px; }
/* Themable header logo: larger by default, shrinks when the header gains its
   scrolled background. */
.sunday-roof-header .sr-headlogo { display: inline-flex; line-height: 0; }
.sunday-roof-header .sr-headlogo img { width: auto; height: 76px; display: block; transition: height 0.28s ease; }
.sunday-roof-header.is-scrolled .sr-headlogo img { height: 52px; }
.sr-footer__logo { display: inline-block; line-height: 0; margin-bottom: 1.1rem; }
.sr-footer__logo img { width: auto; height: 64px; display: block; }
@media (max-width: 600px) {
	.sunday-roof-header .wp-block-site-logo img { height: 46px; }
	.sunday-roof-header .sr-headlogo img { height: 58px; }
	.sunday-roof-header.is-scrolled .sr-headlogo img { height: 44px; }
}
.sunday-roof-header .sr-headrow { width: 100%; }
.sunday-roof-header .sr-brand { white-space: nowrap; }
.sunday-roof-header .sr-brand a { font-weight: 700; letter-spacing: -0.01em; }
.sunday-roof-header .wp-block-navigation { flex-wrap: nowrap; }
.sunday-roof-header .wp-block-navigation__container { gap: clamp(1rem, 1.6vw, 1.75rem); flex-wrap: nowrap; }
.sunday-roof-header .wp-block-navigation-item__content { white-space: nowrap; font-weight: 500; }
.sunday-roof-header .wp-block-navigation a:hover { color: var(--sr-accent); }
.sunday-roof-header .sr-header-phone { white-space: nowrap; margin: 0; }
.sunday-roof-header .sr-headbtn .wp-block-button__link { white-space: nowrap; background: var(--sr-accent); color: var(--sr-ink); border-radius: 8px; font-weight: 600; }
.sunday-roof-header .sr-headbtn .wp-block-button__link:hover { background: color-mix(in srgb, var(--sr-accent), white 12%); }

/* =========================================================
   MOBILE HEADER (<=600px): clean top bar + dark nav overlay
   Core Navigation block handles focus-trap / Esc / aria — we only style it.
   ========================================================= */
/* Hamburger + close use the light ink colour so they read on the hero + dark bg */
.sunday-roof-header .wp-block-navigation__responsive-container-open,
.sunday-roof-header .wp-block-navigation__responsive-container-close {
	color: var(--sr-text);
}
.sunday-roof-header .wp-block-navigation__responsive-container-open:hover,
.sunday-roof-header .wp-block-navigation__responsive-container-close:hover {
	color: var(--sr-accent);
}
@media (max-width: 600px) {
	/* Top bar = logo + hamburger only; phone + CTA live in the sticky bottom bar.
	   !important guards against CSS-combine plugins (LiteSpeed) reordering the
	   cascade so a later core button rule can't re-show it. */
	.sunday-roof-header .sr-header-phone,
	.sunday-roof-header .sr-headbtn { display: none !important; }
	.sunday-roof-header .sr-headnav { gap: 0; }
}
/* Tablet band (601–899px): core Navigation only collapses to a hamburger below
   600px, so between those widths the full desktop row (logo + 6 links + phone +
   CTA) is still laid out nowrap and pushes the document sideways — on a sticky
   (non-hero) header that turns into real horizontal page scroll. Drop the phone
   (it is in the footer and the callbar) and tighten the row so it fits. The CTA
   stays: above 600px the bottom callbar is hidden, so it is the only one left. */
@media (min-width: 601px) and (max-width: 899px) {
	.sunday-roof-header .sr-header-phone { display: none !important; }
	.sunday-roof-header .wp-block-navigation__container { gap: 0.85rem !important; }
	.sunday-roof-header .wp-block-navigation-item__content { font-size: 0.9rem; }
	.sunday-roof-header .sr-headlogo img { height: 48px; }
	.sunday-roof-header.is-scrolled .sr-headlogo img { height: 42px; }
}
@media (min-width: 601px) and (max-width: 679px) {
	.sunday-roof-header .wp-block-navigation__container { gap: 0.6rem !important; }
	.sunday-roof-header .wp-block-navigation-item__content { font-size: 0.82rem; }
	.sunday-roof-header .sr-headlogo img { height: 40px; }
	.sunday-roof-header .sr-headbtn .wp-block-button__link { padding-inline: 0.7rem; font-size: 0.82rem; }
}

/* Dark full-screen overlay (core opens it below its mobile breakpoint) */
.wp-block-navigation__responsive-container.is-menu-open {
	background-color: var(--sr-ink) !important;
	color: var(--sr-text) !important;
	padding: clamp(1.25rem, 5vw, 2rem);
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	padding-top: 3.5rem;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
	gap: 0.5rem;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	color: var(--sr-text);
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1.6rem; font-weight: 600; letter-spacing: -0.01em;
	padding: 0.55rem 0; display: block;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover { color: var(--sr-accent); }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close { top: 1.4rem; right: 1.4rem; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close svg { width: 28px; height: 28px; }

/* Kill inter-section block gaps — full-bleed bands must touch, no dark strips */
.wp-site-blocks > * { margin-block: 0 !important; }
main.sr-dark { --wp--style--block-gap: 0px; }
main.sr-dark > * { margin-block: 0 !important; }

/* Scope dark section recolours to the front-page main */
.sr-dark { background: var(--sr-ink); }
.sr-dark .has-base-background-color { background-color: var(--sr-ink) !important; }
.sr-dark .has-muted-background-color { background-color: var(--sr-panel) !important; }
.sr-dark .has-surface-background-color { background-color: var(--sr-card) !important; }
.sr-dark :where(h1,h2,h3,h4,p,li) { color: var(--sr-text); }
.sr-dark .sr-eyebrow { color: var(--sr-accent); }
.sr-dark .has-contrast-color { color: var(--sr-text) !important; }
.sr-dark .sr-faq details { border-color: var(--sr-line); }

/* =========================================================
   BUTTONS (custom, used in hero + bars)
   ========================================================= */
.sr-btn {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 600; font-size: 1rem; line-height: 1;
	padding: 0.9rem 1.5rem; border-radius: 8px; text-decoration: none;
	transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
	cursor: pointer; border: 1px solid transparent; white-space: nowrap;
}
.sr-btn svg { width: 1.1em; height: 1.1em; }
.sr-btn--primary { background: var(--sr-accent); color: var(--sr-ink); }
.sr-btn--primary:hover { background: color-mix(in srgb, var(--sr-accent), white 12%); transform: translateY(-2px); box-shadow: 0 12px 28px -12px color-mix(in srgb, var(--sr-accent) 70%, transparent); }
.sr-btn--ghost { background: transparent; color: var(--sr-text); border-width: 1.5px; border-color: color-mix(in srgb, var(--sr-heading) 35%, transparent); }
.sr-btn--ghost:hover { border-color: var(--sr-heading); transform: translateY(-2px); }
.sr-btn--block { width: 100%; justify-content: center; }

/* Core outline buttons (e.g. "View all services") adopt the same secondary
   look as .sr-btn--ghost so every outlined button matches. */
.wp-block-button.is-style-outline > .wp-block-button__link {
	background: transparent;
	color: var(--sr-text);
	border: 1.5px solid color-mix(in srgb, var(--sr-heading) 35%, transparent);
	border-radius: 8px;
	padding: 0.9rem 1.5rem;
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 600;
}
.wp-block-button.is-style-outline > .wp-block-button__link:hover {
	background: transparent;
	color: var(--sr-text);
	border-color: var(--sr-heading);
}

/* =========================================================
   HERO (dark, two-column with form card)
   ========================================================= */
.sunday-roof-hero { color: var(--sr-heading); }
.sunday-roof-hero .sr-hero-grid {
	display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem);
	align-items: center; width: 100%;
	padding-block: clamp(2rem, 6vh, 5rem);
}
.sr-hero-copy .sr-eyebrow { color: var(--sr-accent); }
.sr-hero-title {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 700; letter-spacing: -0.02em; line-height: 0.98;
	font-size: clamp(2.75rem, 6vw, 5rem); margin: 0.5rem 0 1rem;
}
.sr-hero-sub { font-size: 1.2rem; line-height: 1.55; color: var(--sr-text-2); max-width: 34ch; }
.sr-hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin: 1.75rem 0 1.5rem; }
.sr-hero-proof {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: 0.95rem; color: var(--sr-text-2);
}
.sr-hero-proof li { display: flex; align-items: center; gap: 0.4rem; }
/* Stack the three proof points on phones so none is left orphaned on its own row. */
@media (max-width: 600px) { .sr-hero-proof { flex-direction: column; gap: 0.6rem; } }
.sr-hero-proof svg { color: var(--sr-accent); width: 18px; height: 18px; }

/* =========================================================
   QUOTE FORM CARD
   ========================================================= */
.sr-quote-card {
	background: color-mix(in srgb, var(--sr-card) 92%, transparent);
	border: 1px solid var(--sr-line);
	border-radius: 16px;
	padding: clamp(1.5rem, 2.5vw, 2.25rem);
	box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
	backdrop-filter: blur(6px);
}
.sr-quote-card__title { font-size: 1.6rem; margin: 0 0 0.25rem; color: var(--sr-heading); }
.sr-quote-card__sub { font-size: 0.95rem; color: var(--sr-dim); margin: 0 0 1.25rem; }
.sr-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.sr-field { display: block; margin-bottom: 0.75rem; min-width: 0; }
.sr-field > span { display: block; font-size: 0.8rem; color: var(--sr-dim); margin-bottom: 0.3rem; font-weight: 600; }
.sr-field input, .sr-field select {
	box-sizing: border-box; display: block; width: 100%; max-width: 100%; min-width: 0;
	padding: 0.7rem 0.85rem; font-size: 1rem; height: 46px;
	background: color-mix(in srgb, var(--sr-heading) 5%, transparent); border: 1px solid color-mix(in srgb, var(--sr-heading) 16%, transparent); border-radius: 8px;
	color: var(--sr-text); font-family: inherit; color-scheme: var(--sr-scheme);
}
.sr-field select { height: 46px; }
/* Native dropdown option readability across browsers */
.sr-field select option, .sr-quotebar select option { color: var(--sr-text); background: var(--sr-card); }
.sr-field input::placeholder { color: var(--sr-dim); }
.sr-field input:focus, .sr-field select:focus {
	outline: none; border-color: var(--sr-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--sr-accent) 25%, transparent);
}
.sr-quote-card .sr-btn--block { margin-top: 0.5rem; }
.sr-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Consent — required before a lead can be sent. */
.sr-consent {
	display: flex; align-items: flex-start; gap: 0.55rem;
	margin: 0.35rem 0 0.9rem; font-size: 0.82rem; line-height: 1.45; color: var(--sr-text-2);
	cursor: pointer;
}
.sr-consent input[type="checkbox"] {
	flex: 0 0 auto; width: 17px; height: 17px; margin: 0.12rem 0 0;
	accent-color: var(--sr-accent); color-scheme: var(--sr-scheme); cursor: pointer;
}
.sr-consent input[type="checkbox"]:focus-visible {
	outline: 2px solid var(--sr-accent); outline-offset: 2px;
}
.sr-consent a { color: var(--sr-accent); text-underline-offset: 2px; }
.sr-consent--compact { margin: 0; font-size: 0.72rem; flex: 1 1 100%; }

/* Inline form feedback (only shown when the server rejects a submission). */
.sr-formmsg {
	margin: 0.75rem 0 0; padding: 0.6rem 0.75rem; border-radius: 8px;
	font-size: 0.85rem; line-height: 1.4;
	color: color-mix(in srgb, #ff8f6b, var(--sr-heading) 25%);
	background: color-mix(in srgb, #ff8f6b 12%, transparent);
	border: 1px solid color-mix(in srgb, #ff8f6b 35%, transparent);
}
.sr-formmsg[hidden] { display: none; }
.sr-btn[data-busy] { opacity: 0.65; pointer-events: none; }

/* =========================================================
   CONFIRMATION MODAL (after a lead is accepted)
   ========================================================= */
.sr-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1.25rem; }
.sr-modal[hidden] { display: none; }
body.sr-modal-open { overflow: hidden; }
.sr-modal__backdrop {
	position: absolute; inset: 0;
	background: color-mix(in srgb, #05070a 78%, transparent); backdrop-filter: blur(4px);
	animation: sr-modal-fade 0.2s ease both;
}
.sr-modal__card {
	position: relative; width: min(440px, 100%);
	background: var(--sr-card); border: 1px solid var(--sr-line); border-radius: 18px;
	padding: clamp(1.75rem, 4vw, 2.5rem); text-align: center;
	box-shadow: 0 40px 80px -30px rgba(0,0,0,0.75);
	animation: sr-modal-in 0.28s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}
.sr-modal__x {
	position: absolute; top: 0.55rem; right: 0.75rem;
	background: none; border: 0; padding: 0.25rem 0.5rem;
	font-size: 1.5rem; line-height: 1; color: var(--sr-dim); cursor: pointer;
}
.sr-modal__x:hover { color: var(--sr-heading); }
.sr-modal__mark {
	display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 1rem;
	border-radius: 50%; color: var(--sr-accent);
	background: color-mix(in srgb, var(--sr-accent) 14%, transparent);
	border: 1px solid color-mix(in srgb, var(--sr-accent) 35%, transparent);
}
.sr-modal__title { margin: 0 0 0.5rem; font-size: 1.5rem; color: var(--sr-heading); }
.sr-modal__text { margin: 0 0 0.75rem; font-size: 0.95rem; line-height: 1.55; color: var(--sr-text-2); }
.sr-modal__text--dim { font-size: 0.85rem; color: var(--sr-dim); }
.sr-modal__text a { color: var(--sr-accent); font-weight: 600; }
.sr-modal__card .sr-btn { margin-top: 0.75rem; }
@keyframes sr-modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes sr-modal-in { from { opacity: 0; transform: translateY(14px) scale(0.97); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
	.sr-modal__backdrop, .sr-modal__card { animation: none; }
}

@media (max-width: 900px) {
	.sunday-roof-hero .sr-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
	.sr-hero-sub { max-width: none; }
}

/* =========================================================
   STICKY QUOTE BAR (reveals on scroll past hero)
   ========================================================= */
.sr-quotebar {
	position: fixed; top: var(--sr-header-h, 72px); left: 0; right: 0; z-index: 100;
	background: color-mix(in srgb, var(--sr-ink) 96%, transparent);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--sr-line);
	transform: translateY(-100%);
	opacity: 0; visibility: hidden;
	transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease, visibility 0.35s;
	box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.65);
}
.sr-quotebar.is-visible { transform: translateY(0); opacity: 1; visibility: visible; }
.sr-quotebar__form {
	max-width: 1280px; margin: 0 auto;
	display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap;
	padding: 0.6rem clamp(1rem, 3vw, 2rem);
}
/* Fields stay on one line; consent + any error wrap onto their own row. */
.sr-quotebar__form > label.sr-consent, .sr-quotebar__form > .sr-formmsg { flex: 1 1 100%; }
.sr-quotebar input, .sr-quotebar select {
	flex: 1 1 0; min-width: 0;
	padding: 0.55rem 0.7rem; font-size: 0.9rem;
	background: var(--sr-card); border: 1px solid var(--sr-line); border-radius: 6px; color: var(--sr-text); color-scheme: var(--sr-scheme);
}
.sr-quotebar input:focus, .sr-quotebar select:focus {
	outline: none; border-color: var(--sr-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--sr-accent) 25%, transparent);
}
.sr-quotebar .sr-btn { flex: 0 0 auto; padding: 0.6rem 1.15rem; font-size: 0.9rem; }
/* The consent box must not inherit the bar's text-input styling. */
.sr-quotebar .sr-consent input[type="checkbox"] {
	flex: 0 0 auto; width: 15px; height: 15px; padding: 0;
	background: none; border: 0; border-radius: 0;
}
.sr-quotebar .sr-formmsg { margin: 0.35rem 0 0; padding: 0.45rem 0.6rem; font-size: 0.78rem; }
@media (max-width: 900px) {
	.sr-quotebar__form { flex-wrap: wrap; }
	.sr-quotebar input, .sr-quotebar select { flex: 1 1 40%; }
}
@media (max-width: 600px) { .sr-quotebar { display: none; } }
@media (prefers-reduced-motion: reduce) { .sr-quotebar { transition: none; } }

/* =========================================================
   SECTION SYSTEM + DEPTH
   ========================================================= */
.sr-section { position: relative; overflow: hidden; padding-top: clamp(3.5rem, 6vw, 5rem) !important; padding-bottom: clamp(3.5rem, 6vw, 5rem) !important; }
.sr-section--process::before,
.sr-section--reviews::before {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(60% 55% at 50% 0%, color-mix(in srgb, var(--sr-accent-2) 16%, transparent), transparent 70%);
}
.sr-section > * { position: relative; z-index: 1; }
.sr-h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; margin: 0.4rem 0 0; color: var(--sr-heading); }

/* --- Reviews --- */
.sr-reviews__head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.sr-reviews__rating { display: flex; align-items: center; justify-content: center; gap: 0.85rem; margin-top: 1rem; flex-wrap: wrap; }
.sr-reviews__rating .sr-stars { color: var(--sr-accent); font-size: 1.3rem; letter-spacing: 2px; }
.sr-reviews__count { color: var(--sr-dim); font-size: 0.9rem; }
.sr-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.sr-review {
	position: relative; overflow: hidden;
	background: linear-gradient(180deg, color-mix(in srgb, var(--sr-heading) 4.5%, transparent), color-mix(in srgb, var(--sr-heading) 1.2%, transparent));
	border: 1px solid var(--sr-line); border-radius: 16px; padding: 2rem 1.75rem;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.sr-review:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--sr-accent) 50%, transparent); box-shadow: 0 24px 48px -28px rgba(0,0,0,0.8); }
.sr-review__mark { position: absolute; top: 0.25rem; right: 1.1rem; font-family: Georgia, "Times New Roman", serif; font-size: 6rem; line-height: 1; color: color-mix(in srgb, var(--sr-accent) 16%, transparent); }
.sr-review__stars { color: var(--sr-accent); letter-spacing: 2px; margin-bottom: 0.75rem; }
.sr-review__quote { margin: 0 0 1.5rem; font-size: 1.02rem; line-height: 1.6; color: var(--sr-text-2); border: 0; padding: 0; }
.sr-review__by { display: flex; align-items: center; gap: 0.8rem; }
.sr-review__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-family: var(--wp--preset--font-family--heading); background: linear-gradient(135deg, var(--sr-accent), color-mix(in srgb, var(--sr-accent), black 32%)); color: var(--sr-heading); flex: 0 0 auto; }
.sr-review__meta { display: flex; flex-direction: column; line-height: 1.3; }
.sr-review__meta strong { color: var(--sr-heading); }
.sr-review__meta span { color: var(--sr-dim); font-size: 0.85rem; }
@media (max-width: 820px) { .sr-reviews__grid { grid-template-columns: 1fr; } }
/* Link out to the live Google list — the curated cards above are the highlights. */
.sr-reviews__more {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: 0.5rem 1.5rem; margin-top: 2.5rem;
}
.sr-reviews__more .sr-btn svg { color: var(--sr-accent); }
.sr-reviews__write { font-size: 0.9rem; color: var(--sr-dim); text-underline-offset: 3px; }
.sr-reviews__write:hover { color: var(--sr-accent); }

/* --- Process (steps + connector, sequential light-up) --- */
.sr-process__head { text-align: center; margin-bottom: 3rem; }
.sr-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
/* dim base track behind the icon row */
.sr-steps::before { content: ""; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, transparent, var(--sr-line) 6%, var(--sr-line) 94%, transparent); }
.sr-step { position: relative; text-align: center; }
/* accent segment from this icon to the next; fills when the step lights up */
.sr-step:not(:last-child)::after { content: ""; position: absolute; top: 27px; left: 50%; width: 100%; height: 2px; background: var(--sr-accent); transform: scaleX(0); transform-origin: left center; transition: transform 0.5s ease; z-index: 0; }
.sr-step.is-lit:not(:last-child)::after { transform: scaleX(1); }
.sr-step__ico { position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; background: var(--sr-card); border: 1px solid var(--sr-line); color: var(--sr-accent); margin: 0 auto 1.1rem; box-shadow: 0 0 0 6px var(--sr-ink); transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease; }
.sr-step.is-lit .sr-step__ico { background: var(--sr-accent); border-color: var(--sr-accent); color: var(--sr-ink); transform: translateY(-2px); box-shadow: 0 0 0 6px var(--sr-ink), 0 0 22px color-mix(in srgb, var(--sr-accent) 55%, transparent); }
.sr-step__num { display: block; font-family: var(--wp--preset--font-family--heading); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.18em; color: var(--sr-accent); margin-bottom: 0.4rem; }
.sr-step__title { font-size: 1.18rem; margin: 0 0 0.45rem; color: var(--sr-heading); }
.sr-step__text { font-size: 0.92rem; color: var(--sr-dim); line-height: 1.55; margin: 0 auto; max-width: 26ch; }
@media (max-width: 820px) {
	.sr-steps { grid-template-columns: 1fr 1fr; }
	.sr-steps::before { display: none; }
	.sr-step:not(:last-child)::after { display: none; }
	.sr-step { max-width: 340px; margin-inline: auto; }
	.sr-step__text { max-width: 32ch; }
}
@media (max-width: 520px) { .sr-steps { grid-template-columns: 1fr; } .sr-step__text { max-width: 40ch; } }

/* --- Service cards: stronger, refined --- */
.sr-svc-card { min-height: 360px !important; }
.sr-svc-card::after { background: linear-gradient(to top, color-mix(in srgb, var(--sr-ink) 90%, transparent) 8%, color-mix(in srgb, var(--sr-ink) 35%, transparent) 45%, transparent 70%) !important; }
.sr-svc-card h3 { font-size: 1.35rem; }
.sr-svc-card__link a { display: inline-flex; align-items: center; gap: 0.4rem; }
.sr-svc-card:hover .sr-svc-card__link a { gap: 0.7rem; }
/* What we do: at least two cards per row on phones (never a single stacked column). */
@media (max-width: 781px) {
	.sr-roofline-top .wp-block-columns { display: grid !important; grid-template-columns: 1fr 1fr; gap: 1rem; }
	.sr-roofline-top .wp-block-column { flex-basis: auto !important; width: auto; margin: 0 !important; }
}
@media (max-width: 600px) {
	.sr-svc-card { min-height: 230px !important; }
	.sr-svc-card h3 { font-size: 1.12rem; }
}

/* --- Trust bar (no dividers) --- */
.sr-trustbar .sr-trust__ico svg { width: 30px; height: 30px; }
/* Mobile trust bar: a centred column of left-aligned rows so every icon lines
   up and the ragged self-centred rows disappear. */
@media (max-width: 600px) {
	.sr-trustbar .wp-block-columns { display: block !important; max-width: 250px; margin-inline: auto; }
	.sr-trustbar .wp-block-column { margin: 0 !important; padding: 0.7rem 0 !important; }
	.sr-trustbar .sr-trust__row { justify-content: flex-start; gap: 0.85rem; }
	.sr-trustbar .sr-trust__ico svg { width: 26px; height: 26px; }
}

/* --- Final CTA (image + gradient, copy + form) --- */
.sr-finalcta { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem) 0; background: linear-gradient(120deg, color-mix(in srgb, var(--sr-accent-2), var(--sr-ink) 58%), var(--sr-ink) 70%); }
.sr-finalcta__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 1; z-index: 0; }
/* Panel-controlled darkness scrim over the final-CTA photo (--sr-final-dim, 0..1). */
.sr-finalcta__bg::after { content: ""; position: absolute; inset: 0; background: var(--sr-ink); opacity: var(--sr-final-dim, 0.82); }
.sr-finalcta::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(75% 100% at 100% 40%, color-mix(in srgb, var(--sr-accent) 18%, transparent), transparent 60%); }
.sr-finalcta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.sr-finalcta__copy .sr-h2 { margin-bottom: 1rem; }
.sr-finalcta__sub { font-size: 1.15rem; color: var(--sr-text-2); line-height: 1.55; max-width: 42ch; margin: 0; }
.sr-finalcta__points { list-style: none; margin: 1.5rem 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.1rem 1.5rem; }
.sr-finalcta__points li { display: flex; align-items: center; gap: 0.5rem; color: var(--sr-text); font-weight: 600; }
.sr-finalcta__points svg { color: var(--sr-accent); }
.sr-finalcta__form { margin: 0; }
@media (max-width: 860px) { .sr-finalcta__inner { grid-template-columns: 1fr; } }

/* --- Footer --- */
.sunday-roof-footer { position: relative; border-top: 1px solid var(--sr-line); }
.sunday-roof-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--sr-accent), transparent); opacity: 0.55; }
.sr-footer { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 3vw, 3rem); }
.sr-footer__logo { font-family: var(--wp--preset--font-family--heading); font-weight: 700; font-size: 1.4rem; color: var(--sr-heading); margin-bottom: 0.75rem; }
.sr-footer__tag { color: var(--sr-dim); line-height: 1.6; font-size: 0.92rem; max-width: 38ch; margin: 0; }
.sr-footer__phone { display: inline-block; margin: 1.1rem 0 0.25rem; font-family: var(--wp--preset--font-family--heading); font-weight: 700; font-size: 1.3rem; color: var(--sr-heading); text-decoration: none; }
.sr-footer__phone:hover { color: var(--sr-accent); }
.sr-footer__hours { color: var(--sr-dim); font-size: 0.85rem; margin: 0; }
.sr-footer__col h2 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--sr-accent); margin: 0 0 1rem; font-family: var(--wp--preset--font-family--heading); }
.sr-footer__col ul { list-style: none; margin: 0; padding: 0; line-height: 2.15; }
.sr-footer__col a { color: var(--sr-text-2); text-decoration: none; font-size: 0.95rem; }
.sr-footer__col a:hover { color: var(--sr-heading); }
.sr-footer__area { color: var(--sr-dim); line-height: 1.85; font-size: 0.92rem; margin: 0; }
.sr-footer__bar { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--sr-heading) 8%, transparent); color: var(--sr-dim); font-size: 0.82rem; }
.sr-footer__bar a { color: var(--sr-dim); }
.sr-footer__bar a:hover { color: var(--sr-heading); }
/* --- 404 --- */
.sr-404__inner { max-width: 820px; }
.sr-404 .sr-hero-sub { max-width: 58ch; }
.sr-404__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--sr-line); }
.sr-404__col h2 { font-size: 0.78rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--sr-dim); margin: 0 0 0.9rem; }
.sr-404__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.sr-404__col a { color: var(--sr-text); text-decoration: none; }
.sr-404__col a:hover { color: var(--sr-accent); }
.sr-404__search { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.sr-404__search input { flex: 1 1 130px; min-width: 0; padding: 0.7rem 0.85rem; border-radius: 8px; border: 1px solid var(--sr-line); background: var(--sr-panel); color: var(--sr-text); }
.sr-404__cols { max-width: 1180px; }
@media (max-width: 820px) { .sr-404__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sr-404__cols { grid-template-columns: 1fr; } }

/* Search form on the results page inherits the blog hero spacing */
.sr-searchform { max-width: 520px; margin-top: 1.5rem; }

.sr-footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sr-footer__legal span { opacity: 0.45; }
@media (max-width: 820px) { .sr-footer { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .sr-footer { grid-template-columns: 1fr; } }

/* --- Location map (Leaflet, dark) --- */
.sr-mapsection { position: relative; background: var(--sr-ink); width: 100vw; max-width: 100vw; left: 50%; transform: translateX(-50%); margin: 0; overflow: hidden; }
.sr-maptext { position: relative; width: 100%; }
.sr-map { height: clamp(600px, 86vh, 900px); width: 100% !important; background: var(--sr-ink); z-index: 0; }
.sr-map noscript { color: var(--sr-dim); padding: 1rem; display: block; }
/* Brand tint over the basemap (slate -> copper), keeps roads readable.
   Tune: change the two rgba colors / opacity, or remove this rule. */
.sr-map::after {
	content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 450;
	background: linear-gradient(135deg, color-mix(in srgb, var(--sr-accent-2) 30%, transparent) 0%, rgba(20, 22, 25, 0.05) 45%, color-mix(in srgb, var(--sr-accent) 16%, transparent) 100%);
	mix-blend-mode: overlay;
}
.leaflet-container { background: var(--sr-ink) !important; font-family: inherit; }
.leaflet-control-attribution { background: color-mix(in srgb, var(--sr-ink) 72%, transparent) !important; color: var(--sr-dim) !important; }
.leaflet-control-attribution a { color: var(--sr-dim) !important; }
.leaflet-bar a, .leaflet-bar a:hover { background: var(--sr-card) !important; color: var(--sr-text) !important; border-bottom: 1px solid var(--sr-line) !important; }
.leaflet-bar a:hover { background: var(--sr-panel) !important; }
.leaflet-bar { border: 1px solid var(--sr-line) !important; }
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out { font-size: 20px; }

.sr-pin__dot { position: absolute; inset: 0; margin: auto; width: 14px; height: 14px; border-radius: 50%; background: var(--sr-accent); border: 2px solid var(--sr-ink); box-shadow: 0 0 0 3px color-mix(in srgb, var(--sr-accent) 35%, transparent); }
.sr-pin__pulse { position: absolute; inset: 0; margin: auto; width: 26px; height: 26px; border-radius: 50%; background: color-mix(in srgb, var(--sr-accent) 35%, transparent); animation: sr-pulse 2s ease-out infinite; }
@keyframes sr-pulse { 0% { transform: scale(0.4); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .sr-pin__pulse { animation: none; } }

.sr-mapoverlay { position: absolute; top: 50%; left: clamp(1rem, 5vw, 4.5rem); transform: translateY(-50%); z-index: 500; width: min(410px, calc(100% - 2rem)); display: flex; flex-direction: column; gap: 1.25rem; }
.sr-maplead__title { font-family: var(--wp--preset--font-family--heading); font-weight: 700; letter-spacing: -0.02em; font-size: clamp(2.5rem, 5vw, 3.75rem); line-height: 1; color: var(--sr-heading); margin: 0 0 0.75rem; text-shadow: 0 2px 24px rgba(0,0,0,0.55); }
.sr-maplead__text { color: var(--sr-text-2); font-size: 1.05rem; line-height: 1.55; margin: 0; text-shadow: 0 1px 16px rgba(0,0,0,0.6); }
.sr-mapcard { position: relative; z-index: 500; width: 100%; background: color-mix(in srgb, var(--sr-card) 95%, transparent); backdrop-filter: blur(8px); border: 1px solid var(--sr-line); border-radius: 16px; padding: clamp(1.5rem, 2.5vw, 2.15rem); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.75); }
.sr-mapcard__title { font-family: var(--wp--preset--font-family--heading); font-size: 1.5rem; color: var(--sr-heading); margin: 0.25rem 0 1.1rem; }
.sr-mapcard__list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.sr-mapcard__list li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--sr-text-2); font-size: 0.95rem; line-height: 1.45; }
.sr-mapcard__list svg { color: var(--sr-accent); flex: 0 0 auto; margin-top: 1px; }
.sr-mapcard__list a { color: var(--sr-text-2); text-decoration: none; }
.sr-mapcard__list a:hover { color: var(--sr-heading); }
@media (max-width: 720px) {
	.sr-mapoverlay { position: static; transform: none; width: auto; margin: 0; padding: 2rem 1rem; }
	.sr-maplead__title { font-size: 2.5rem; }
	.sr-map { height: 340px; }
	.sr-mapsection { background: var(--sr-ink); }
	.sr-maptext { display: flex; flex-direction: column-reverse; }
}

/* --- FAQ (two column) --- */
.sr-faqwrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; max-width: 1100px; margin: 0 auto; }
.sr-faqwrap__aside .sr-h2 { margin-bottom: 1rem; }
.sr-faqwrap__aside p { color: var(--sr-dim); line-height: 1.6; }
.sr-faqwrap__aside .sr-btn { margin-top: 1rem; }
.sr-faq { margin: 0; }
@media (max-width: 820px) { .sr-faqwrap { grid-template-columns: 1fr; } }

/* =========================================================
   SERVICE PAGE (data-driven golden template)
   ========================================================= */

/* --- Service hero: left-aligned copy over a dark photo --- */
/* Top-align + top padding so the breadcrumb clears the fixed transparent header
   (the header floats over this hero via body.sr-hero-header). */
.sr-svc-hero.wp-block-cover { justify-content: flex-start; }
.sr-svc-hero .wp-block-cover__inner-container { width: 100%; max-width: 1180px; margin-inline: auto; padding-top: clamp(5.5rem, 12vh, 9rem); padding-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.sr-svc-hero__inner { max-width: 720px; margin-left: 0 !important; margin-right: auto !important; }
.sr-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.85rem; margin-bottom: 1.35rem; color: color-mix(in srgb, var(--sr-heading) 62%, transparent); }
.sr-crumbs a { color: color-mix(in srgb, var(--sr-heading) 72%, transparent); text-decoration: none; }
.sr-crumbs a:hover { color: var(--sr-accent); }
.sr-crumbs span[aria-current] { color: var(--sr-heading); }
.sr-svc-hero .sr-hero-title { font-size: clamp(2.25rem, 5vw, 4rem); }
.sr-svc-hero__sub { max-width: 56ch; color: var(--sr-text-2); }
.sr-svc-hero__proof { margin-top: 1.75rem; }

/* --- Overview: copy + photo, then a stats strip --- */
.sr-over { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.sr-over__copy .sr-h2 { margin-bottom: 1.25rem; }
.sr-over__p { color: var(--sr-text-2); line-height: 1.7; margin: 0 0 1.1rem; }
.sr-over__cta { margin-top: 0.75rem; }
.sr-over__media { margin: 0; aspect-ratio: 3 / 2; }
.sr-over__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; border: 1px solid var(--sr-line); box-shadow: 0 40px 70px -40px rgba(0, 0, 0, 0.8); }
@media (max-width: 860px) { .sr-over__media { aspect-ratio: 16 / 10; } }
.sr-stats { list-style: none; margin: clamp(2.5rem, 5vw, 3.5rem) 0 0; padding-top: clamp(2rem, 4vw, 2.75rem); border-top: 1px solid var(--sr-line); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.sr-stat { text-align: center; }
.sr-stat__num { display: block; font-family: var(--wp--preset--font-family--heading); font-weight: 700; font-size: clamp(1.9rem, 3.6vw, 2.75rem); letter-spacing: -0.02em; line-height: 1; color: var(--sr-heading); }
.sr-stat__label { display: block; margin-top: 0.5rem; color: var(--sr-dim); font-size: 0.9rem; line-height: 1.4; }
@media (max-width: 860px) { .sr-over { grid-template-columns: 1fr; } .sr-over__media { order: -1; } .sr-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; } }

/* --- Includes: shared head + checklist grid --- */
.sr-inc__head, .sr-areas__head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sr-inc__sub { color: var(--sr-dim); line-height: 1.6; margin: 0.85rem 0 0; font-size: 1.02rem; }
.sr-inc__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem 1.75rem; }
.sr-inc__item { display: flex; gap: 0.9rem; align-items: flex-start; }
.sr-inc__ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--sr-card); border: 1px solid var(--sr-line); color: var(--sr-accent); }
.sr-inc__title { font-size: 1.05rem; margin: 0.15rem 0 0.35rem; color: var(--sr-heading); }
.sr-inc__text { font-size: 0.9rem; color: var(--sr-dim); line-height: 1.55; margin: 0; }
@media (max-width: 980px) { .sr-inc__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sr-inc__grid { grid-template-columns: 1fr; } }

/* --- Materials: option cards with tag badge --- */
.sr-mat__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.sr-mat__card { position: relative; background: linear-gradient(180deg, color-mix(in srgb, var(--sr-heading) 4.5%, transparent), color-mix(in srgb, var(--sr-heading) 1.2%, transparent)); border: 1px solid var(--sr-line); border-radius: 16px; padding: 1.75rem 1.5rem; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.sr-mat__card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--sr-accent) 50%, transparent); box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.8); }
.sr-mat__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--sr-ink); border: 1px solid var(--sr-line); color: var(--sr-accent); margin-bottom: 1.1rem; }
.sr-mat__tag { position: absolute; top: 1.3rem; right: 1.3rem; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700; color: var(--sr-accent); background: color-mix(in srgb, var(--sr-accent) 12%, transparent); border: 1px solid color-mix(in srgb, var(--sr-accent) 32%, transparent); padding: 0.28rem 0.55rem; border-radius: 999px; }
.sr-mat__name { font-size: 1.18rem; margin: 0 0 0.5rem; color: var(--sr-heading); }
.sr-mat__text { font-size: 0.92rem; color: var(--sr-dim); line-height: 1.6; margin: 0; }
@media (max-width: 980px) { .sr-mat__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sr-mat__grid { grid-template-columns: 1fr; } }

/* --- Gallery: recent-work photo grid --- */
.sr-gal__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.sr-gal__item { margin: 0; overflow: hidden; border-radius: 14px; border: 1px solid var(--sr-line); aspect-ratio: 4 / 3.2; }
.sr-gal__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.sr-gal__item:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .sr-gal__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sr-gal__grid { grid-template-columns: 1fr; } }

/* --- Service areas: city chips (internal links) --- */
.sr-areas .sr-eyebrow svg { vertical-align: -3px; margin-right: 0.3rem; }
.sr-areas__note { color: var(--sr-dim); line-height: 1.6; margin: 0.85rem 0 0; }
.sr-areas__grid { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.sr-chip { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.55rem 0.95rem; border: 1px solid var(--sr-line); border-radius: 999px; background: var(--sr-card); color: var(--sr-text-2); text-decoration: none; font-size: 0.9rem; transition: transform 0.16s ease, border-color 0.16s ease, color 0.16s ease, background 0.16s ease; }
.sr-chip svg { color: var(--sr-accent); }
.sr-chip:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--sr-accent) 55%, transparent); color: var(--sr-heading); background: color-mix(in srgb, var(--sr-accent) 8%, transparent); }
.sr-chip--all { font-weight: 600; color: var(--sr-accent); }

/* =========================================================
   LOCATION PAGE (data-driven golden template)
   ========================================================= */

/* Intro: reuses .sr-over grid; aside is a facts card + neighborhood tags */
.sr-loc-facts { background: linear-gradient(180deg, color-mix(in srgb, var(--sr-heading) 4.5%, transparent), color-mix(in srgb, var(--sr-heading) 1.2%, transparent)); border: 1px solid var(--sr-line); border-radius: 18px; padding: clamp(1.5rem, 2.5vw, 2rem); }
.sr-loc-facts__list { list-style: none; margin: 0 0 1.25rem; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.sr-loc-facts__list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.sr-loc-facts__list li + li { border-top: 1px solid var(--sr-line); padding-top: 1rem; }
.sr-loc-facts__ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--sr-ink); border: 1px solid var(--sr-line); color: var(--sr-accent); }
.sr-loc-facts__body { display: flex; flex-direction: column; line-height: 1.35; }
.sr-loc-facts__k { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sr-dim); font-weight: 700; }
.sr-loc-facts__v { color: var(--sr-heading); font-weight: 600; margin-top: 0.15rem; }
.sr-loc-facts__hoods { border-top: 1px solid var(--sr-line); padding-top: 1.25rem; }
.sr-loc-facts__chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.75rem; }
.sr-tag { font-size: 0.82rem; color: var(--sr-text-2); background: var(--sr-card); border: 1px solid var(--sr-line); border-radius: 8px; padding: 0.3rem 0.6rem; }

/* Services offered here: link cards */
.sr-locsvc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.sr-locsvc__card { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.35rem; border: 1px solid var(--sr-line); border-radius: 14px; background: var(--sr-card); text-decoration: none; transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease; }
.sr-locsvc__card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--sr-accent) 50%, transparent); box-shadow: 0 20px 40px -26px rgba(0, 0, 0, 0.8); }
.sr-locsvc__ico { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--sr-ink); border: 1px solid var(--sr-line); color: var(--sr-accent); }
.sr-locsvc__body { display: flex; flex-direction: column; line-height: 1.3; flex: 1 1 auto; }
.sr-locsvc__name { color: var(--sr-heading); font-weight: 600; font-family: var(--wp--preset--font-family--heading); }
.sr-locsvc__tag { color: var(--sr-dim); font-size: 0.85rem; margin-top: 0.15rem; }
.sr-locsvc__arrow { color: var(--sr-accent); font-size: 1.15rem; transition: transform 0.18s ease; }
.sr-locsvc__card:hover .sr-locsvc__arrow { transform: translateX(4px); }
@media (max-width: 900px) { .sr-locsvc__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sr-locsvc__grid { grid-template-columns: 1fr; } }

/* City map: shorter than the full-screen contact map */
.sr-loc-maphead .sr-inc__head { margin-bottom: 0; }
.sr-loc-map .sr-map { height: clamp(440px, 58vh, 600px); }
.sr-loc-map .sr-mapoverlay { width: min(360px, calc(100% - 2rem)); }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.sr-team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.sr-team__card { background: linear-gradient(180deg, color-mix(in srgb, var(--sr-heading) 4.5%, transparent), color-mix(in srgb, var(--sr-heading) 1.2%, transparent)); border: 1px solid var(--sr-line); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; transition: transform 0.2s ease, border-color 0.2s ease; }
.sr-team__card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--sr-accent) 50%, transparent); }
.sr-team__avatar { width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1.1rem; font-family: var(--wp--preset--font-family--heading); font-weight: 700; font-size: 1.4rem; color: var(--sr-heading); background: linear-gradient(135deg, var(--sr-accent), color-mix(in srgb, var(--sr-accent), black 32%)); }
.sr-team__name { font-size: 1.15rem; margin: 0 0 0.2rem; color: var(--sr-heading); }
.sr-team__role { font-size: 0.85rem; color: var(--sr-accent); font-weight: 600; margin: 0 0 0.75rem; }
.sr-team__bio { font-size: 0.9rem; color: var(--sr-dim); line-height: 1.55; margin: 0; }
@media (max-width: 900px) { .sr-team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sr-team__grid { grid-template-columns: 1fr; } }

/* =========================================================
   GALLERY PAGE (filterable masonry)
   ========================================================= */
.sr-galx__bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sr-galx__chip { font-family: var(--wp--preset--font-family--heading); font-weight: 600; font-size: 0.9rem; color: var(--sr-text-2); background: var(--sr-card); border: 1px solid var(--sr-line); border-radius: 999px; padding: 0.55rem 1.1rem; cursor: pointer; transition: transform 0.16s ease, border-color 0.16s ease, color 0.16s ease, background 0.16s ease; }
.sr-galx__chip:hover { transform: translateY(-2px); color: var(--sr-heading); border-color: color-mix(in srgb, var(--sr-accent) 55%, transparent); }
.sr-galx__chip.is-active { background: var(--sr-accent); color: var(--sr-ink); border-color: var(--sr-accent); }
.sr-galx__chip:focus-visible { outline: 2px solid var(--sr-accent); outline-offset: 2px; }
.sr-galx__grid { columns: 3; column-gap: 1rem; }
.sr-galx__item { break-inside: avoid; margin: 0 0 1rem; position: relative; overflow: hidden; border-radius: 14px; border: 1px solid var(--sr-line); }
.sr-galx__item[hidden] { display: none; }
.sr-galx__item img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.sr-galx__item:hover img { transform: scale(1.05); }
.sr-galx__item figcaption { position: absolute; inset: auto 0 0 0; padding: 2.5rem 1.1rem 1rem; font-size: 0.9rem; line-height: 1.4; color: var(--sr-heading); background: linear-gradient(to top, color-mix(in srgb, var(--sr-ink) 92%, transparent) 12%, color-mix(in srgb, var(--sr-ink) 45%, transparent) 55%, transparent); display: flex; flex-direction: column; gap: 0.3rem; }
.sr-galx__cat { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.09em; font-weight: 700; color: var(--sr-accent); }
@media (max-width: 900px) { .sr-galx__grid { columns: 2; } }
@media (max-width: 560px) { .sr-galx__grid { columns: 1; } }

/* =========================================================
   BLOG (index cards + single post)
   ========================================================= */
.sr-blog-hero__inner { max-width: 760px; }
.sr-blog-hero .sr-hero-title { font-size: clamp(2rem, 4vw, 3.25rem); }
.sr-blog-hero .sr-hero-sub { max-width: 56ch; }
.sr-blog-hero { padding-bottom: 0 !important; }
.sr-bloglist-wrap { padding-top: clamp(1.75rem, 3vw, 2.5rem) !important; }

/* =========================================================
   SERVICES INDEX + LOCATIONS INDEX
   ========================================================= */
.sr-svcidx__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.sr-svcidx__card { display: flex; flex-direction: column; background: var(--sr-card); border: 1px solid var(--sr-line); border-radius: 16px; overflow: hidden; text-decoration: none; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.sr-svcidx__card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--sr-accent) 50%, transparent); box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.8); }
.sr-svcidx__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.sr-svcidx__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.sr-svcidx__card:hover .sr-svcidx__media img { transform: scale(1.05); }
.sr-svcidx__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.3rem; flex: 1 1 auto; }
.sr-svcidx__name { font-family: var(--wp--preset--font-family--heading); font-weight: 700; font-size: 1.2rem; color: var(--sr-heading); }
.sr-svcidx__tag { color: var(--sr-dim); font-size: 0.92rem; }
.sr-svcidx__link { margin-top: 0.75rem; color: var(--sr-accent); font-weight: 600; font-size: 0.92rem; }
.sr-svcidx__card:hover .sr-svcidx__link span { padding-left: 0.2rem; }
@media (max-width: 900px) { .sr-svcidx__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sr-svcidx__grid { grid-template-columns: 1fr; } }

.sr-locidx__group + .sr-locidx__group { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.sr-locidx__county { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sr-accent); font-family: var(--wp--preset--font-family--heading); margin: 0 0 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--sr-line); }
.sr-locidx__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.sr-locidx__card { display: flex; align-items: center; gap: 0.6rem; padding: 0.95rem 1.1rem; background: var(--sr-card); border: 1px solid var(--sr-line); border-radius: 12px; text-decoration: none; color: var(--sr-text); transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease; }
.sr-locidx__card:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--sr-accent) 50%, transparent); background: color-mix(in srgb, var(--sr-accent) 7%, transparent); }
.sr-locidx__pin { color: var(--sr-accent); display: inline-flex; }
.sr-locidx__name { font-weight: 600; flex: 1 1 auto; }
.sr-locidx__arrow { color: var(--sr-accent); opacity: 0; transition: opacity 0.16s ease, transform 0.16s ease; }
.sr-locidx__card:hover .sr-locidx__arrow { opacity: 1; transform: translateX(3px); }
@media (max-width: 900px) { .sr-locidx__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .sr-locidx__grid { grid-template-columns: 1fr; } }

/* Index: query grid of cards */
.sr-bloglist .wp-block-post-template { gap: 1.5rem; }
.sr-blogcard { background: linear-gradient(180deg, color-mix(in srgb, var(--sr-heading) 4.5%, transparent), color-mix(in srgb, var(--sr-heading) 1.2%, transparent)); border: 1px solid var(--sr-line); border-radius: 16px; overflow: hidden; height: 100%; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.sr-blogcard:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--sr-accent) 50%, transparent); box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.8); }
.sr-blogcard__img { margin: 0; }
.sr-blogcard__img img, .sr-blogcard__img a { display: block; width: 100%; }
.sr-blogcard__body { padding: 1.35rem 1.4rem 1.5rem; }
.sr-blogcard__cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.09em; font-weight: 700; margin: 0 0 0.5rem; }
.sr-blogcard__cat a { color: var(--sr-accent); text-decoration: none; }
.sr-blogcard__title { margin: 0 0 0.6rem; font-size: 1.2rem; line-height: 1.25; }
.sr-blogcard__title a { color: var(--sr-heading); text-decoration: none; }
.sr-blogcard__title a:hover { color: var(--sr-accent); }
.sr-blogcard__excerpt { color: var(--sr-dim); font-size: 0.92rem; line-height: 1.55; margin: 0 0 1rem; }
.sr-blogcard__date { color: var(--sr-dim); font-size: 0.8rem; margin: 0; }
.sr-pagination { margin-top: 3rem; gap: 0.5rem; }
.sr-pagination a, .sr-pagination span { color: var(--sr-text-2); text-decoration: none; padding: 0.4rem 0.75rem; border: 1px solid var(--sr-line); border-radius: 8px; }
.sr-pagination a:hover { color: var(--sr-heading); border-color: color-mix(in srgb, var(--sr-accent) 55%, transparent); }
.sr-pagination .current { background: var(--sr-accent); color: var(--sr-ink); border-color: var(--sr-accent); }

/* Single post: article + prose */
.sr-post__back a { color: var(--sr-dim); text-decoration: none; font-size: 0.9rem; }
.sr-post__back a:hover { color: var(--sr-accent); }
.sr-post__cat { margin-bottom: 0.75rem; }
.sr-post__cat a { color: var(--sr-accent); text-decoration: none; }
.sr-post__title { font-size: clamp(2rem, 4vw, 3rem); color: var(--sr-heading); margin: 0 0 1rem; }
.sr-post__meta { color: var(--sr-dim); font-size: 0.9rem; gap: 0 !important; margin-bottom: 2rem; }
.sr-post__img { margin: 0 0 2.5rem; }
.sr-post__img img { width: 100%; border-radius: 16px; border: 1px solid var(--sr-line); }
.sr-post .wp-block-post-content { font-size: 1.08rem; line-height: 1.75; color: var(--sr-text-2); }
.sr-post .wp-block-post-content > * { margin-block: 1.3rem; }
.sr-post .wp-block-post-content h2 { color: var(--sr-heading); font-size: 1.6rem; margin-top: 2.5rem; }
.sr-post .wp-block-post-content h3 { color: var(--sr-heading); font-size: 1.28rem; margin-top: 2rem; }
.sr-post .wp-block-post-content a { color: var(--sr-accent); }
.sr-post .wp-block-post-content ul, .sr-post .wp-block-post-content ol { padding-left: 1.3rem; }
.sr-post .wp-block-post-content li { margin-block: 0.5rem; }
.sr-post .wp-block-post-content blockquote { border-left: 3px solid var(--sr-accent); margin-left: 0; padding-left: 1.25rem; color: var(--sr-heading); font-size: 1.2rem; }
