/**
 * Car Recovery — theme styles.
 *
 * Structure: tokens, reset, primitives (buttons, icons, headings), layout
 * shells, then one block per section in the order they appear on the page.
 * Everything is plain CSS with custom properties — no build step, because the
 * site is eleven sections and a form and does not need one.
 */

/* ============================================================== Tokens */

:root {
	--cr-ink:        #0b0e13;
	--cr-ink-2:      #131923;
	--cr-ink-3:      #1c2431;
	--cr-ink-line:   rgba(255, 255, 255, 0.10);

	--cr-amber:      #ffb000;
	--cr-amber-hi:   #ffc63f;
	--cr-amber-lo:   #d99500;
	/* --cr-amber-lo is only ~2.8:1 on white, so it is fine for icons and rules
	   but fails AA as small text. Anything wordy on a light background uses
	   this darker tone instead (5.9:1). */
	--cr-amber-ink:  #8a5e00;

	--cr-paper:      #f3f5f8;
	--cr-white:      #ffffff;

	--cr-text:       #131a26;
	--cr-muted:      #5a6577;
	--cr-line:       #e3e8ef;

	--cr-radius:     14px;
	--cr-radius-lg:  22px;

	--cr-shadow:     0 1px 2px rgba(11, 14, 19, 0.05), 0 8px 24px -12px rgba(11, 14, 19, 0.18);
	--cr-shadow-lg:  0 2px 4px rgba(11, 14, 19, 0.06), 0 24px 56px -20px rgba(11, 14, 19, 0.28);

	--cr-head:       'Archivo', 'Helvetica Neue', Arial, sans-serif;
	--cr-body:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

	--cr-gutter:     clamp(1.15rem, 4vw, 2.5rem);
	--cr-section-y:  clamp(3.75rem, 8vw, 7rem);
	--cr-header-h:   74px;

	/* Motion. One ease-out curve for anything the user triggered, one softer
	   curve for entrances, and a spring with a small overshoot for the few
	   places that should feel physical. Durations stay short: every animation
	   here is seen repeatedly on one long page, so subtlety beats spectacle. */
	--cr-ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
	--cr-ease-enter: cubic-bezier(0.16, 0.84, 0.28, 1);
	--cr-spring:     cubic-bezier(0.34, 1.46, 0.64, 1);
	--cr-fast:       0.16s;
	--cr-med:        0.32s;
	--cr-slow:       0.6s;
}

/* =============================================================== Reset */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--cr-header-h) + 12px);
}

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

body {
	margin: 0;
	background: var(--cr-white);
	color: var(--cr-text);
	font-family: var(--cr-body);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.cr-nav-open { overflow: hidden; }

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

h1, h2, h3, h4 {
	font-family: var(--cr-head);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin: 0;
	text-wrap: balance;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

button, input, textarea, select { font: inherit; color: inherit; }

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

.cr-skip {
	position: absolute;
	left: -9999px;
	z-index: 999;
	padding: 0.85rem 1.25rem;
	background: var(--cr-amber);
	color: var(--cr-ink);
	font-weight: 700;
	border-radius: 0 0 10px 0;
}
.cr-skip:focus { left: 0; top: 0; }

/* ========================================================== Primitives */

.cr-container {
	width: min(1180px, 100%);
	margin-inline: auto;
	padding-inline: var(--cr-gutter);
}
.cr-container--narrow { width: min(820px, 100%); }

.cr-icon { width: 24px; height: 24px; flex: none; }
.cr-icon--sm { width: 18px; height: 18px; }

.cr-accent { color: var(--cr-amber); }

.cr-stars {
	display: inline-flex;
	gap: 2px;
	color: var(--cr-amber);
}
.cr-stars svg { width: 17px; height: 17px; }

/* Buttons */

.cr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.78rem 1.35rem;
	border: 1.5px solid transparent;
	border-radius: 999px;
	font-family: var(--cr-head);
	font-size: 0.975rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	text-decoration: none;
	cursor: pointer;
	transition:
		transform var(--cr-fast) var(--cr-ease),
		background-color var(--cr-fast) var(--cr-ease),
		border-color var(--cr-fast) var(--cr-ease),
		color var(--cr-fast) var(--cr-ease),
		box-shadow var(--cr-fast) var(--cr-ease);
}
.cr-btn:hover { transform: translateY(-2px); }
/* Press feedback: a button that only lifts on hover feels inert on the way
   down, and on touch there is no hover at all — this is the only affordance a
   thumb ever gets. */
.cr-btn:active { transform: translateY(0) scale(0.97); transition-duration: 0.06s; }
.cr-btn[disabled] { opacity: 0.6; pointer-events: none; }

.cr-btn--lg { padding: 1rem 1.75rem; font-size: 1.06rem; }
.cr-btn--sm { padding: 0.6rem 1.05rem; font-size: 0.9rem; }
.cr-btn--block { width: 100%; }

.cr-btn--amber {
	background: var(--cr-amber);
	color: var(--cr-ink);
	box-shadow: 0 10px 26px -12px rgba(255, 176, 0, 0.9);
}
.cr-btn--amber:hover { background: var(--cr-amber-hi); }

.cr-btn--dark {
	background: var(--cr-ink);
	color: var(--cr-white);
}
.cr-btn--dark:hover { background: var(--cr-ink-3); }

.cr-btn--ghost {
	border-color: rgba(255, 255, 255, 0.32);
	color: var(--cr-white);
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(6px);
}
.cr-btn--ghost:hover {
	border-color: var(--cr-white);
	background: rgba(255, 255, 255, 0.12);
}

.cr-btn--outline {
	border-color: var(--cr-line);
	background: var(--cr-white);
	color: var(--cr-text);
}
.cr-btn--outline:hover {
	border-color: var(--cr-ink);
	background: var(--cr-ink);
	color: var(--cr-white);
}

.cr-btn--bare {
	color: var(--cr-ink);
	border-color: rgba(11, 14, 19, 0.28);
}
.cr-btn--bare:hover { border-color: var(--cr-ink); background: rgba(11, 14, 19, 0.06); }

/* Section shells */

.cr-section { padding-block: var(--cr-section-y); }
.cr-section--light { background: var(--cr-white); }
.cr-section--paper { background: var(--cr-paper); }
.cr-section--dark {
	background: var(--cr-ink);
	color: rgba(255, 255, 255, 0.78);
}
.cr-section--dark h1,
.cr-section--dark h2,
.cr-section--dark h3 { color: var(--cr-white); }

/* Section headings */

.cr-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.cr-head--center { text-align: center; max-width: 46rem; margin-inline: auto; }
/* Capped so the subheading wraps at a readable measure instead of running the
   full 1180px of the container. */
.cr-head--left { text-align: left; max-width: 44rem; }

/* An overline, not a pill. A filled badge above every single section is the
   fastest way to make eleven different sections look like one template, so the
   kicker is now just a letterspaced label — with a short rule to anchor it when
   the head is left-aligned. */
.cr-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	margin: 0 0 0.9rem;
	color: var(--cr-amber-ink);
	font-family: var(--cr-head);
	font-size: 0.775rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.cr-head--left .cr-kicker::before {
	content: '';
	width: 1.9rem;
	height: 2px;
	border-radius: 2px;
	background: var(--cr-amber);
}
.cr-section--dark .cr-kicker { color: var(--cr-amber); }

.cr-h2 { font-size: clamp(1.85rem, 4vw, 2.85rem); }

.cr-sub {
	margin: 0.9rem 0 0;
	font-size: clamp(1.03rem, 1.5vw, 1.14rem);
	color: var(--cr-muted);
	text-wrap: pretty;
}
.cr-section--dark .cr-sub { color: rgba(255, 255, 255, 0.68); }
.cr-head--center .cr-sub { margin-inline: auto; }

/* Reveal
 *
 * Sections no longer fade in as one slab — a whole section arriving at once
 * reads as a page-builder default and gives the eye nothing to follow. Instead
 * the heading leads and the cards under it cascade, so the motion describes the
 * section's structure. Both classes are applied by main.js, which means no-JS
 * and reduced-motion visitors never see the opacity: 0 starting state. */

.cr-reveal .cr-head,
.cr-reveal [data-cr-item] {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity var(--cr-slow) var(--cr-ease-enter),
		transform var(--cr-slow) var(--cr-ease-enter);
}

.cr-reveal.is-in .cr-head,
.cr-reveal.is-in [data-cr-item] {
	opacity: 1;
	transform: none;
}

/* The cascade starts after the heading has begun moving, so the two read as one
   gesture rather than two. main.js caps --cr-i so a long list of chips cannot
   push the last item a second and a half late. */
.cr-reveal.is-in [data-cr-item] {
	transition-delay: calc(90ms + var(--cr-i, 0) * 55ms);
}

/* ============================================================== Header */

.cr-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(11, 14, 19, 0.92);
	backdrop-filter: saturate(150%) blur(12px);
	border-bottom: 1px solid var(--cr-ink-line);
	color: var(--cr-white);
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.cr-header.is-stuck { box-shadow: 0 12px 34px -18px rgba(0, 0, 0, 0.8); }

.cr-header__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	width: min(1180px, 100%);
	margin-inline: auto;
	padding: 0.85rem var(--cr-gutter);
	min-height: var(--cr-header-h);
}

.cr-brand { text-decoration: none; margin-right: auto; }

/* Textmark. The underline is drawn with a pseudo-element rather than
   text-decoration so it can grow from the left on hover. */
.cr-logo {
	position: relative;
	display: inline-flex;
	align-items: baseline;
	font-family: var(--cr-head);
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.1;
}
.cr-logo__dot { color: var(--cr-amber); }

.cr-logo::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.28em;
	height: 2px;
	border-radius: 2px;
	background: var(--cr-amber);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s var(--cr-ease);
}
.cr-brand:hover .cr-logo::after,
.cr-brand:focus-visible .cr-logo::after { transform: scaleX(1); }

@media (max-width: 400px) {
	.cr-logo { font-size: 1.15rem; }
}

.cr-nav { display: flex; align-items: center; gap: 0.35rem; }
.cr-nav a {
	padding: 0.5rem 0.7rem;
	border-radius: 8px;
	font-size: 0.925rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.76);
	text-decoration: none;
	transition: color 0.15s ease, background-color 0.15s ease;
}
.cr-nav a:hover { color: var(--cr-white); background: rgba(255, 255, 255, 0.07); }

.cr-header__actions { display: flex; align-items: center; gap: 0.85rem; }

/* The number is the header's only action, so it carries the amber the "Get a
   price" button used to. It stays a two-line block rather than becoming a plain
   cr-btn: the number wants to be read as a number, and the "Call us, 24/7"
   line above it is doing real work on a page whose whole promise is that
   someone picks up at 3am. */
.cr-header__tel {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.42rem 1.05rem 0.42rem 0.9rem;
	border-radius: 999px;
	background: var(--cr-amber);
	text-decoration: none;
	color: var(--cr-ink);
	box-shadow: 0 10px 26px -12px rgba(255, 176, 0, 0.9);
	transition: background-color 0.2s ease;
}
.cr-header__tel:hover { background: var(--cr-amber-hi); }
.cr-header__tel .cr-icon { color: var(--cr-ink); }
.cr-header__tel span { display: flex; flex-direction: column; line-height: 1.2; }
.cr-header__tel small {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	opacity: 0.72;
}
.cr-header__tel strong {
	font-family: var(--cr-head);
	font-size: 1.02rem;
	font-weight: 700;
	white-space: nowrap;
}

.cr-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 0 11px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid var(--cr-ink-line);
	border-radius: 12px;
	cursor: pointer;
}
.cr-burger span {
	display: block;
	height: 2px;
	background: var(--cr-white);
	border-radius: 2px;
	transition: transform 0.22s ease, opacity 0.22s ease;
}
.cr-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cr-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.cr-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.cr-mobile {
	border-top: 1px solid var(--cr-ink-line);
	padding: 1rem var(--cr-gutter) 1.5rem;
	background: var(--cr-ink);
}

/* The panel is toggled with the hidden attribute, so it animates out of
   display: none — which needs allow-discrete for the display leg and
   @starting-style to give the opening frame somewhere to come from. Without
   support for either it simply appears, as it does today. */
@media (prefers-reduced-motion: no-preference) {
	.cr-mobile {
		opacity: 1;
		transform: translateY(0);
		transition:
			opacity var(--cr-med) var(--cr-ease),
			transform var(--cr-med) var(--cr-ease),
			display var(--cr-med) allow-discrete;
	}
	/* display stays none — allow-discrete defers the flip to the end of the
	   transition on the way out, and applies it immediately on the way in. */
	.cr-mobile[hidden] {
		display: none;
		opacity: 0;
		transform: translateY(-10px);
	}
	@starting-style {
		.cr-mobile:not([hidden]) { opacity: 0; transform: translateY(-10px); }
	}
}
/* wp_nav_menu wraps each link in an <li>, so the rule that draws the divider
   has to sit on a block-level anchor or it only spans the text. */
.cr-mobile__nav { display: flex; flex-direction: column; }
.cr-mobile__nav li { display: block; }
.cr-mobile__nav a {
	display: block;
	padding: 0.85rem 0.25rem;
	border-bottom: 1px solid var(--cr-ink-line);
	font-family: var(--cr-head);
	font-size: 1.06rem;
	font-weight: 600;
	color: var(--cr-white);
	text-decoration: none;
}
.cr-mobile__actions { display: grid; gap: 0.65rem; margin-top: 1.25rem; }

@media (max-width: 1040px) {
	.cr-nav { display: none; }
	.cr-burger { display: flex; }
}
@media (max-width: 560px) {
	.cr-header__tel span { display: none; }
	.cr-header__tel {
		width: 44px;
		height: 44px;
		padding: 0;
		justify-content: center;
		border-radius: 12px;
	}
}

/* ================================================================ Hero */

.cr-hero {
	position: relative;
	isolation: isolate;
	padding-block: clamp(3.5rem, 9vw, 7.5rem) clamp(3rem, 7vw, 5.5rem);
	background: var(--cr-ink);
	color: var(--cr-white);
	overflow: hidden;
}

/* Amber wash from the top-right plus a faint hazard-stripe texture. Both are
   painted rather than loaded so the hero never waits on an image request. */
.cr-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(120% 90% at 88% -10%, rgba(255, 176, 0, 0.30), transparent 58%),
		radial-gradient(80% 70% at 8% 108%, rgba(255, 176, 0, 0.10), transparent 60%),
		linear-gradient(180deg, #0b0e13 0%, #121821 100%);
}
.cr-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.05;
	background-image: repeating-linear-gradient(
		-45deg,
		rgba(255, 255, 255, 0.9) 0 2px,
		transparent 2px 22px
	);
	mask-image: linear-gradient(180deg, transparent, #000 55%, transparent);
}

.cr-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -3;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Overscaled so the parallax below can move it without exposing an edge. */
	transform: scale(1.08);
}

/* With a photo behind it the scrim is directional rather than flat: dense on
   the left where the headline sits, thin on the right so the road and the
   sodium lights stay visible. A flat 0.9 overlay over a 0.34-opacity image
   left the photo invisible, which is the same as having no photo at all. */
.cr-hero--photo .cr-hero__bg { opacity: 0.62; filter: saturate(0.88) contrast(1.04); }
.cr-hero--photo::before {
	background:
		linear-gradient(100deg,
			rgba(11, 14, 19, 0.95) 0%,
			rgba(11, 14, 19, 0.88) 34%,
			rgba(11, 14, 19, 0.58) 64%,
			rgba(11, 14, 19, 0.38) 100%),
		radial-gradient(95% 85% at 90% 4%, rgba(255, 176, 0, 0.20), transparent 62%),
		linear-gradient(180deg, rgba(11, 14, 19, 0.55) 0%, transparent 22% 62%, rgba(11, 14, 19, 0.88) 100%);
}
/* The painted hazard stripes fight the photo's own texture. */
.cr-hero--photo::after { opacity: 0.03; }

/* Parallax. A scroll-driven animation runs on the compositor and needs no
   scroll listener, so it costs nothing on the main thread; browsers without
   it simply get a static background. */
@supports (animation-timeline: scroll()) {
	@media (prefers-reduced-motion: no-preference) {
		.cr-hero__bg {
			animation: cr-hero-parallax linear both;
			animation-timeline: scroll(root block);
			animation-range: 0 100vh;
		}
	}
}
@keyframes cr-hero-parallax {
	from { transform: scale(1.08) translateY(-2.2%); }
	to   { transform: scale(1.08) translateY(2.2%); }
}

/* The hero content sits on the same 1180px column as the header, every
   section below it and the footer, so the badge, headline and CTAs share a left
   edge with the logo and the nav. Line length is held by the elements that need
   it — the title, the sub and the stats each cap their own measure — rather
   than by narrowing the container, which would inset the whole hero from the
   rest of the page. */

/* Entrance. The hero is always at the top of the page on load, so this is a
   plain CSS stagger with no observer behind it. Delays are deliberately tight —
   the headline is the LCP element and every millisecond it spends at opacity 0
   is a millisecond added to that metric, so it leads the sequence rather than
   waiting its turn behind the badge. */
@media (prefers-reduced-motion: no-preference) {
	.cr-hero__title,
	.cr-hero__badge,
	.cr-hero__sub,
	.cr-hero__ctas,
	.cr-hero__stats {
		animation: cr-rise var(--cr-slow) var(--cr-ease-enter) both;
	}
	.cr-hero__title { animation-duration: 0.5s; }
	.cr-hero__badge { animation-delay: 0.08s; }
	.cr-hero__sub   { animation-delay: 0.16s; }
	.cr-hero__ctas  { animation-delay: 0.24s; }
	.cr-hero__stats { animation-delay: 0.32s; }
}

@keyframes cr-rise {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: none; }
}

.cr-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0 0 1.5rem;
	padding: 0.45rem 1rem 0.45rem 0.75rem;
	border: 1px solid rgba(255, 176, 0, 0.34);
	border-radius: 999px;
	background: rgba(255, 176, 0, 0.10);
	font-size: 0.85rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.cr-hero__pulse {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--cr-amber);
	box-shadow: 0 0 0 0 rgba(255, 176, 0, 0.7);
	animation: cr-pulse 2.2s infinite;
}
@keyframes cr-pulse {
	70%  { box-shadow: 0 0 0 11px rgba(255, 176, 0, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 176, 0, 0); }
}

.cr-hero__title {
	font-size: clamp(2.35rem, 6.2vw, 4.4rem);
	letter-spacing: -0.035em;
	max-width: 18ch;
}

.cr-hero__sub {
	margin: 1.35rem 0 0;
	max-width: 46rem;
	font-size: clamp(1.06rem, 1.9vw, 1.28rem);
	color: rgba(255, 255, 255, 0.74);
	text-wrap: pretty;
}

.cr-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2.15rem;
}

.cr-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 2.5rem);
	margin-top: clamp(2.75rem, 6vw, 4.25rem);
	padding-top: clamp(1.75rem, 3vw, 2.5rem);
	border-top: 1px solid var(--cr-ink-line);
	max-width: 46rem;
}
.cr-hero__stat dt {
	font-family: var(--cr-head);
	font-size: clamp(1.5rem, 3.4vw, 2.15rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--cr-amber);
}
.cr-hero__stat dd {
	margin: 0.3rem 0 0;
	font-size: 0.9rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 620px) {
	.cr-hero__stats { grid-template-columns: 1fr; gap: 1.1rem; }
	.cr-hero__stat { display: flex; align-items: baseline; gap: 0.8rem; }
	.cr-hero__stat dt { font-size: 1.4rem; min-width: 6.5rem; }
	.cr-hero__ctas .cr-btn { width: 100%; }
}

/* ========================================================= Trust strip */

.cr-trust {
	background: var(--cr-ink-2);
	border-block: 1px solid var(--cr-ink-line);
	padding-block: clamp(1.5rem, 3vw, 2.1rem);
	color: var(--cr-white);
}

.cr-trust__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 2rem);
}

.cr-trust__item { display: flex; align-items: flex-start; gap: 0.8rem; }
.cr-trust__icon {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 11px;
	background: rgba(255, 176, 0, 0.13);
	color: var(--cr-amber);
}
.cr-trust__copy { display: flex; flex-direction: column; line-height: 1.35; }
.cr-trust__copy strong {
	font-family: var(--cr-head);
	font-size: 0.985rem;
	font-weight: 700;
}
.cr-trust__copy small {
	margin-top: 0.2rem;
	font-size: 0.83rem;
	color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 900px) { .cr-trust__list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .cr-trust__list { grid-template-columns: 1fr; } }

/* =============================================================== About */

.cr-about__grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
}

.cr-about .cr-head { margin-bottom: 1.75rem; }

.cr-about__para {
	margin-bottom: 1.15rem;
	font-size: 1.045rem;
	color: #37414f;
	text-wrap: pretty;
}

.cr-about__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}
.cr-about__hours { font-size: 0.9rem; color: var(--cr-muted); }

.cr-about__points { display: grid; gap: 0.9rem; }
.cr-about__point {
	display: flex;
	gap: 1rem;
	padding: 1.35rem;
	border: 1px solid var(--cr-line);
	border-radius: var(--cr-radius);
	background: var(--cr-white);
	box-shadow: var(--cr-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cr-about__point:hover { transform: translateY(-3px); box-shadow: var(--cr-shadow-lg); }
.cr-about__point-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	flex: none;
	border-radius: 12px;
	background: var(--cr-ink);
	color: var(--cr-amber);
}
.cr-about__point h3 { font-size: 1.055rem; margin-bottom: 0.35rem; }
.cr-about__point p { font-size: 0.94rem; color: var(--cr-muted); }

@media (max-width: 900px) { .cr-about__grid { grid-template-columns: 1fr; } }

/* ============================================================ Services */

.cr-services__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.cr-svc {
	display: flex;
	flex-direction: column;
	padding: 1.85rem;
	border: 1px solid var(--cr-line);
	border-radius: var(--cr-radius-lg);
	background: var(--cr-white);
	box-shadow: var(--cr-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cr-svc:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 176, 0, 0.5);
	box-shadow: var(--cr-shadow-lg);
}

.cr-svc__media {
	margin: -1.85rem -1.85rem 1.5rem;
	border-radius: var(--cr-radius-lg) var(--cr-radius-lg) 0 0;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}
.cr-svc__media img { width: 100%; height: 100%; object-fit: cover; }

.cr-svc__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin-bottom: 1.25rem;
	border-radius: 15px;
	background: var(--cr-ink);
	color: var(--cr-amber);
}
.cr-svc__icon .cr-icon { width: 27px; height: 27px; }

.cr-svc__title { font-size: 1.3rem; margin-bottom: 0.6rem; }
.cr-svc__text { color: var(--cr-muted); font-size: 0.965rem; }

.cr-svc__bullets { display: grid; gap: 0.55rem; margin: 1.35rem 0 1.75rem; }
.cr-svc__bullets li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.925rem;
	line-height: 1.5;
}
.cr-svc__bullets .cr-icon { color: var(--cr-amber-lo); margin-top: 0.15rem; }

.cr-svc .cr-btn { margin-top: auto; }

.cr-services__tiles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.25rem;
}

.cr-tile {
	padding: 1.4rem;
	border: 1px solid var(--cr-line);
	border-radius: var(--cr-radius);
	background: rgba(255, 255, 255, 0.6);
	transition: background-color 0.2s ease, border-color 0.2s ease;
}
.cr-tile:hover { background: var(--cr-white); border-color: rgba(255, 176, 0, 0.5); }
.cr-tile__icon {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-bottom: 0.85rem;
	border-radius: 10px;
	background: rgba(255, 176, 0, 0.16);
	color: var(--cr-amber-lo);
}
.cr-tile__icon .cr-icon { width: 20px; height: 20px; }
.cr-tile__title { font-size: 1.02rem; margin-bottom: 0.3rem; }
.cr-tile__text { font-size: 0.895rem; color: var(--cr-muted); line-height: 1.5; }

@media (max-width: 940px) {
	.cr-services__cards { grid-template-columns: 1fr; }
	.cr-services__tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) { .cr-services__tiles { grid-template-columns: 1fr; } }

/* ============================================================= Pricing */

.cr-pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: start;
}

.cr-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 2rem 1.75rem;
	border: 1px solid var(--cr-line);
	border-radius: var(--cr-radius-lg);
	background: var(--cr-white);
	box-shadow: var(--cr-shadow);
}

.cr-plan--featured {
	border-color: transparent;
	background: var(--cr-ink);
	color: rgba(255, 255, 255, 0.76);
	box-shadow: var(--cr-shadow-lg);
}
/* Lifted rather than scaled: scale(1.035) resamples the text inside the card and
   leaves it visibly softer than its neighbours. */
@media (min-width: 941px) {
	.cr-plan--featured { transform: translateY(-0.85rem); padding-block: 2.4rem; }
}

.cr-plan__flag {
	position: absolute;
	top: -0.85rem;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	padding: 0.3rem 0.95rem;
	border-radius: 999px;
	background: var(--cr-amber);
	color: var(--cr-ink);
	font-family: var(--cr-head);
	font-size: 0.735rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.cr-plan__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 1.1rem;
	border-radius: 13px;
	background: rgba(255, 176, 0, 0.16);
	color: var(--cr-amber-lo);
}
.cr-plan--featured .cr-plan__icon { background: rgba(255, 176, 0, 0.18); color: var(--cr-amber); }

.cr-plan__name { font-size: 1.2rem; margin-bottom: 0.75rem; }
.cr-plan--featured .cr-plan__name { color: var(--cr-white); }

.cr-plan__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.9rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--cr-line);
}
.cr-plan--featured .cr-plan__price { border-color: var(--cr-ink-line); }
.cr-plan__price strong {
	font-family: var(--cr-head);
	font-size: 2.1rem;
	font-weight: 800;
	letter-spacing: -0.035em;
	color: var(--cr-text);
}
.cr-plan--featured .cr-plan__price strong { color: var(--cr-amber); }
.cr-plan__price small { font-size: 0.85rem; color: var(--cr-muted); }
.cr-plan--featured .cr-plan__price small { color: rgba(255, 255, 255, 0.55); }

.cr-plan__text { font-size: 0.95rem; color: var(--cr-muted); }
.cr-plan--featured .cr-plan__text { color: rgba(255, 255, 255, 0.7); }

.cr-plan__features { display: grid; gap: 0.6rem; margin: 1.35rem 0 1.85rem; }
.cr-plan__features li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.925rem;
	line-height: 1.5;
}
.cr-plan__features .cr-icon { color: var(--cr-amber-lo); margin-top: 0.15rem; }
.cr-plan--featured .cr-plan__features .cr-icon { color: var(--cr-amber); }

.cr-plan .cr-btn { margin-top: auto; }

.cr-pricing__note {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	max-width: 52rem;
	margin: 2.5rem auto 0;
	padding: 1.15rem 1.35rem;
	border: 1px dashed var(--cr-line);
	border-radius: var(--cr-radius);
	background: var(--cr-paper);
	font-size: 0.925rem;
	color: var(--cr-muted);
}
.cr-pricing__note .cr-icon { color: var(--cr-amber-lo); margin-top: 0.15rem; }

@media (max-width: 940px) {
	.cr-pricing__grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ============================================================= Process */

.cr-process__steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2.25rem);
	counter-reset: step;
}

.cr-step {
	position: relative;
	padding: 1.9rem 1.6rem;
	border: 1px solid var(--cr-ink-line);
	border-radius: var(--cr-radius-lg);
	background: var(--cr-ink-2);
}

/* Connecting rule between the cards on wide screens only. */
@media (min-width: 941px) {
	.cr-step:not(:last-child)::after {
		content: '';
		position: absolute;
		top: 3.4rem;
		right: calc(-1 * clamp(1.25rem, 3vw, 2.25rem));
		width: clamp(1.25rem, 3vw, 2.25rem);
		border-top: 2px dashed rgba(255, 176, 0, 0.35);
	}
}

.cr-step__num {
	position: absolute;
	top: 1.35rem;
	right: 1.5rem;
	font-family: var(--cr-head);
	font-size: 2.6rem;
	font-weight: 800;
	line-height: 1;
	color: rgba(255, 255, 255, 0.07);
}

.cr-step__icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	margin-bottom: 1.15rem;
	border-radius: 14px;
	background: var(--cr-amber);
	color: var(--cr-ink);
}
.cr-step__icon .cr-icon { width: 25px; height: 25px; }

.cr-step__title { font-size: 1.2rem; margin-bottom: 0.5rem; }
.cr-step__text { font-size: 0.945rem; color: rgba(255, 255, 255, 0.64); }

@media (max-width: 940px) { .cr-process__steps { grid-template-columns: 1fr; } }

/* ============================================================ Coverage */

.cr-coverage__grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.cr-coverage__body { font-size: 1.045rem; color: #37414f; text-wrap: pretty; }

.cr-coverage__label {
	margin: 2rem 0 0.9rem;
	font-size: 0.775rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cr-muted);
}

.cr-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.cr-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.42rem 0.85rem;
	border: 1px solid var(--cr-line);
	border-radius: 999px;
	background: var(--cr-paper);
	font-size: 0.875rem;
	font-weight: 500;
}
.cr-chip .cr-icon { width: 15px; height: 15px; color: var(--cr-amber-lo); }

.cr-coverage__regions {
	border: 1px solid var(--cr-line);
	border-radius: var(--cr-radius-lg);
	overflow: hidden;
	background: var(--cr-white);
	box-shadow: var(--cr-shadow);
}

.cr-region + .cr-region { border-top: 1px solid var(--cr-line); }
.cr-region summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.4rem;
	cursor: pointer;
	list-style: none;
	font-family: var(--cr-head);
	font-size: 1.02rem;
	font-weight: 700;
	transition: background-color 0.15s ease;
}
.cr-region summary::-webkit-details-marker { display: none; }
.cr-region summary:hover { background: var(--cr-paper); }
.cr-region summary small {
	display: grid;
	place-items: center;
	min-width: 28px;
	height: 24px;
	padding-inline: 0.4rem;
	border-radius: 999px;
	background: var(--cr-paper);
	font-family: var(--cr-body);
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--cr-muted);
}
.cr-region[open] summary { background: var(--cr-paper); }

.cr-region__areas {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
	gap: 0.4rem 1rem;
	padding: 0.35rem 1.4rem 1.4rem;
}
.cr-region__areas li {
	position: relative;
	padding-left: 0.95rem;
	font-size: 0.9rem;
	color: var(--cr-muted);
}
.cr-region__areas li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--cr-amber);
}

@media (max-width: 900px) { .cr-coverage__grid { grid-template-columns: 1fr; } }

/* ============================================================= Reviews */

.cr-reviews__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: -1.25rem 0 2.5rem;
}
.cr-reviews__badge strong {
	font-family: var(--cr-head);
	font-size: 1.35rem;
	font-weight: 800;
}
.cr-reviews__badge span { color: var(--cr-muted); font-size: 0.925rem; }

.cr-reviews__grid {
	columns: 2;
	column-gap: 1.25rem;
}
.cr-review {
	break-inside: avoid;
	margin: 0 0 1.25rem;
	padding: 1.6rem;
	border: 1px solid var(--cr-line);
	border-radius: var(--cr-radius-lg);
	background: var(--cr-white);
	box-shadow: var(--cr-shadow);
}
.cr-review blockquote {
	margin: 0.85rem 0 1.25rem;
	font-size: 0.985rem;
	line-height: 1.68;
	color: #37414f;
	text-wrap: pretty;
}
.cr-review figcaption { display: flex; align-items: center; gap: 0.7rem; }
.cr-review__avatar {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	flex: none;
	border-radius: 50%;
	background: var(--cr-ink);
	color: var(--cr-amber);
	font-family: var(--cr-head);
	font-weight: 700;
}
.cr-review__who { display: flex; flex-direction: column; line-height: 1.3; }
.cr-review__who strong { font-size: 0.945rem; }
.cr-review__who small { font-size: 0.815rem; color: var(--cr-muted); }

@media (max-width: 780px) { .cr-reviews__grid { columns: 1; } }

/* ================================================================= FAQ */

.cr-faq__list {
	border: 1px solid var(--cr-line);
	border-radius: var(--cr-radius-lg);
	overflow: hidden;
	background: var(--cr-white);
	box-shadow: var(--cr-shadow);
}
.cr-faq__item + .cr-faq__item { border-top: 1px solid var(--cr-line); }

.cr-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 1.3rem 1.5rem;
	cursor: pointer;
	list-style: none;
	font-family: var(--cr-head);
	font-size: 1.06rem;
	font-weight: 700;
	transition: background-color 0.15s ease;
}
.cr-faq__item summary::-webkit-details-marker { display: none; }
.cr-faq__item summary:hover { background: var(--cr-paper); }

.cr-faq__plus {
	position: relative;
	width: 20px;
	height: 20px;
	flex: none;
	transition: transform 0.25s ease;
}
.cr-faq__plus::before,
.cr-faq__plus::after {
	content: '';
	position: absolute;
	inset: 50% 0 auto;
	height: 2.5px;
	border-radius: 2px;
	background: var(--cr-amber-lo);
	transform: translateY(-50%);
}
.cr-faq__plus::after { transform: translateY(-50%) rotate(90deg); transition: opacity 0.25s ease; }
.cr-faq__item[open] .cr-faq__plus { transform: rotate(180deg); }
.cr-faq__item[open] .cr-faq__plus::after { opacity: 0; }

.cr-faq__answer {
	padding: 0 1.5rem 1.5rem;
	font-size: 0.975rem;
	line-height: 1.7;
	color: var(--cr-muted);
	text-wrap: pretty;
}

/* Accordion collapse.
 *
 * <details> snaps open with no transition, which on a list where opening one
 * closes another makes the whole block jump. Animating ::details-content to a
 * keyword height needs interpolate-size, so the whole thing is wrapped in
 * @supports: browsers without it keep today's instant open, which is a
 * perfectly good fallback rather than a broken one. */
@supports (interpolate-size: allow-keywords) and selector(details::details-content) {
	@media (prefers-reduced-motion: no-preference) {
		:root { interpolate-size: allow-keywords; }

		.cr-faq__item::details-content,
		.cr-region::details-content {
			height: 0;
			overflow: hidden;
			transition:
				height var(--cr-med) var(--cr-ease),
				content-visibility var(--cr-med) var(--cr-ease) allow-discrete;
		}
		.cr-faq__item[open]::details-content,
		.cr-region[open]::details-content { height: auto; }
	}
}

.cr-faq__foot { margin-top: 1.75rem; text-align: center; color: var(--cr-muted); }
.cr-faq__foot a { color: var(--cr-text); font-weight: 700; }

/* ============================================================ CTA band */

.cr-band {
	padding-block: clamp(2.75rem, 5vw, 4rem);
	background: linear-gradient(105deg, var(--cr-amber) 0%, var(--cr-amber-hi) 100%);
	color: var(--cr-ink);
}
.cr-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.75rem;
}
.cr-band__copy { max-width: 34rem; }
.cr-band__title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.cr-band__text { margin: 0.65rem 0 0; font-size: 1.03rem; color: rgba(11, 14, 19, 0.76); }
.cr-band__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

@media (max-width: 620px) {
	.cr-band__ctas { width: 100%; }
	.cr-band__ctas .cr-btn { width: 100%; }
}

/* ============================================================= Contact */

.cr-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.cr-contact .cr-head { margin-bottom: 1.75rem; }

.cr-contact__call {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.4rem;
	border: 1px solid rgba(255, 176, 0, 0.32);
	border-radius: var(--cr-radius);
	background: rgba(255, 176, 0, 0.09);
	text-decoration: none;
	color: var(--cr-white);
	transition: background-color 0.18s ease, border-color 0.18s ease;
}
.cr-contact__call:hover { background: rgba(255, 176, 0, 0.16); border-color: var(--cr-amber); }
.cr-contact__call .cr-icon { color: var(--cr-amber); width: 28px; height: 28px; }
.cr-contact__call span { display: flex; flex-direction: column; line-height: 1.3; }
.cr-contact__call small { font-size: 0.83rem; color: rgba(255, 255, 255, 0.6); }
.cr-contact__call strong {
	font-family: var(--cr-head);
	font-size: 1.4rem;
	font-weight: 800;
	letter-spacing: -0.025em;
}

.cr-contact__details { display: grid; gap: 1.15rem; margin-top: 2rem; }
.cr-contact__details dt {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.775rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.62);
}
.cr-contact__details dt .cr-icon { color: var(--cr-amber); }
.cr-contact__details dd {
	margin: 0.25rem 0 0 1.65rem;
	font-size: 0.975rem;
	color: rgba(255, 255, 255, 0.85);
}

.cr-contact__formwrap {
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 1px solid var(--cr-ink-line);
	border-radius: var(--cr-radius-lg);
	background: var(--cr-ink-2);
}

.cr-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}
.cr-form__row, .cr-form > .cr-field { margin-bottom: 1rem; }

.cr-field { display: block; }
.cr-field__label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.86rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.78);
}
.cr-field__label em {
	font-style: normal;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.58);
}

.cr-field input,
.cr-field textarea {
	width: 100%;
	padding: 0.82rem 1rem;
	border: 1px solid var(--cr-ink-line);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--cr-white);
	font-size: 1rem;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}
.cr-field textarea { resize: vertical; min-height: 7rem; }
.cr-field input::placeholder,
.cr-field textarea::placeholder { color: rgba(255, 255, 255, 0.34); }
.cr-field input:focus,
.cr-field textarea:focus {
	border-color: var(--cr-amber);
	background: rgba(255, 255, 255, 0.08);
	outline: none;
}
.cr-field--invalid input,
.cr-field--invalid textarea { border-color: #ff6b5e; }

.cr-field__error {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.83rem;
	color: #ff8f85;
}
.cr-field__error:empty { display: none; }

.cr-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.cr-form button[type="submit"] { margin-top: 0.5rem; }

.cr-form__spinner { display: none; }
.cr-form.is-sending .cr-form__label { opacity: 0.55; }
.cr-form.is-sending .cr-form__spinner {
	display: block;
	width: 17px;
	height: 17px;
	border: 2.5px solid rgba(11, 14, 19, 0.28);
	border-top-color: var(--cr-ink);
	border-radius: 50%;
	animation: cr-spin 0.7s linear infinite;
}
@keyframes cr-spin { to { transform: rotate(360deg); } }

.cr-form__privacy {
	margin: 0.9rem 0 0;
	font-size: 0.82rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.60);
}

.cr-form__status {
	margin: 1rem 0 0;
	padding: 0.85rem 1rem;
	border-radius: 11px;
	font-size: 0.925rem;
}
.cr-form__status.is-ok { background: rgba(46, 204, 113, 0.14); color: #7ee2a8; }
.cr-form__status.is-bad { background: rgba(255, 107, 94, 0.14); color: #ff9c93; }

@media (max-width: 900px) { .cr-contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .cr-form__row { grid-template-columns: 1fr; } }

/* ============================================================== Footer */

.cr-footer {
	padding-block: clamp(3rem, 6vw, 4.5rem) 0;
	background: var(--cr-ink);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.925rem;
}

.cr-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(3, 1fr);
	gap: clamp(1.75rem, 4vw, 3rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
}

.cr-footer__about .cr-logo { color: var(--cr-white); margin-bottom: 1.25rem; }
.cr-footer__about p { margin-bottom: 0.7rem; max-width: 34rem; line-height: 1.6; }

.cr-footer__rating {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 1.25rem;
	font-size: 0.865rem;
}

.cr-footer__title {
	margin-bottom: 1rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--cr-white);
}

.cr-footer__links { display: grid; gap: 0.6rem; }
.cr-footer__links a {
	text-decoration: none;
	transition: color 0.15s ease;
}
.cr-footer__links a:hover { color: var(--cr-amber); }

.cr-footer__address {
	margin-top: 1.1rem;
	font-style: normal;
	font-size: 0.865rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.58);
}

.cr-footer__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.75rem;
	padding-block: 1.5rem;
	border-top: 1px solid var(--cr-ink-line);
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.58);
}
.cr-footer__bar p { margin: 0; }

@media (max-width: 940px) {
	.cr-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.cr-footer__about { grid-column: 1 / -1; }
}
@media (max-width: 520px) { .cr-footer__grid { grid-template-columns: 1fr; } }

/* ======================================== Floating call bar + to-top */

.cr-callbar {
	position: fixed;
	inset: auto 0 0;
	z-index: 90;
	display: none;
	gap: 0.6rem;
	padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
	background: rgba(11, 14, 19, 0.96);
	backdrop-filter: blur(10px);
	border-top: 1px solid var(--cr-ink-line);
	transition: transform 0.25s ease;
}
.cr-callbar.is-hidden { transform: translateY(120%); }

.cr-callbar a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0.85rem 0.75rem;
	border-radius: 12px;
	font-family: var(--cr-head);
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
}
.cr-callbar__tel { flex: 1.6; background: var(--cr-amber); color: var(--cr-ink); }
.cr-callbar__quote {
	flex: 1;
	border: 1px solid rgba(255, 255, 255, 0.24);
	color: var(--cr-white);
}

.cr-totop {
	position: fixed;
	right: 1.15rem;
	bottom: 1.15rem;
	z-index: 91;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--cr-ink);
	color: var(--cr-white);
	box-shadow: var(--cr-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.cr-totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.cr-totop svg { width: 21px; height: 21px; }

@media (max-width: 780px) {
	.cr-callbar { display: flex; }
	body { padding-bottom: 4.6rem; }
	.cr-totop { bottom: 5.4rem; }
}

/* ================================================== Fallback templates */

.cr-prose h1, .cr-prose h2, .cr-prose h3 { margin: 2rem 0 0.85rem; }
.cr-prose a { color: var(--cr-amber-ink); }
.cr-prose ul, .cr-prose ol { margin: 0 0 1rem 1.25rem; }
.cr-prose li { list-style: disc; margin-bottom: 0.35rem; }

/* ======================================================= Block editor */

/* The editor canvas has no header, so remove the sticky offset and let each
   block sit flush the way it will on the front end. */
.editor-styles-wrapper { --cr-header-h: 0px; }
.editor-styles-wrapper .cr-hero,
.editor-styles-wrapper .cr-section { scroll-margin-top: 0; }
