/* =================================================================
 * Conrad Roofing LP – main stylesheet (1:1 replica of legacy build)
 *
 * Color tokens harvested from the live Elementor build:
 *   --cr-burgundy        #5C022D   (primary buttons, accents)
 *   --cr-burgundy-light  #742B3D   (hero gradient end)
 *   --cr-brown           #2A200F   (topbar, dark sections, headings)
 *   --cr-peach           #F8E7DF   (soft accent)
 *   --cr-cream-body      #F1F1F1   (page bg + form inputs)
 *   --cr-text            #898683   (body text)
 *   --cr-google-yellow   #F4B400
 * =================================================================*/

:root {
	--cr-burgundy:        #5C022D;
	--cr-burgundy-dark:   #4a0124;
	--cr-burgundy-light:  #742B3D;
	--cr-brown:           #2A200F;
	--cr-peach:           #F8E7DF;
	--cr-cream:           #F1F1F1;
	--cr-text:            #2A200F;
	--cr-heading:         #2A200F;
	--cr-text-muted:      #898683;
	--cr-border:          #DDDDDD;
	--cr-border-soft:     rgba(42, 32, 15, 0.15);
	--cr-white:           #FFFFFF;
	--cr-google-yellow:   #F4B400;
	--cr-shadow-sm:       0 2px 6px rgba(42, 32, 15, .08);
	--cr-shadow-md:       0 10px 30px rgba(42, 32, 15, .12);
	--cr-radius-btn:      6px;
	--cr-radius-input:    10px;
	--cr-radius-card:     12px;
	--cr-font-body:       "Onest", system-ui, sans-serif;
	--cr-font-display:    "Rethink Sans", "Onest", sans-serif;
	--cr-container:       1400px;
	--cr-gutter:          clamp(16px, 3vw, 30px);
}

/* RESET */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding-top: 142px; }
@media (max-width: 980px) { body { padding-top: 122px; } }
@media (max-width: 480px) { body { padding-top: 110px; } }
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }

body {
	font-family: var(--cr-font-body);
	font-size: 16px;
	line-height: 1.625;
	color: var(--cr-text);
	background: var(--cr-cream);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--cr-font-display);
	color: var(--cr-heading);
	font-weight: 700;
	line-height: 1.13;
	margin: 0 0 .6em;
}
h1 { font-size: clamp(36px, 4.6vw, 64px); }
h2 { font-size: clamp(28px, 3.2vw, 44px); }
h3 { font-size: clamp(22px, 2vw, 30px); }
p  { margin: 0 0 1em; }
::selection { background: var(--cr-burgundy); color: #fff; }

.cr-skip {
	position: absolute; top: -40px; left: 0; background: var(--cr-burgundy);
	color: #fff; padding: 8px 14px; z-index: 1000; border-radius: 0 0 6px 0;
}
.cr-skip:focus { top: 0; }

/* LAYOUT */
.cr-container { width: 100%; max-width: var(--cr-container); margin: 0 auto; padding: 0 var(--cr-gutter); }
.cr-section { padding: clamp(60px, 8vw, 100px) 0; position: relative; }
.cr-section__head { margin-bottom: clamp(36px, 5vw, 56px); text-align: center; }
.cr-section__title { margin: 0 0 14px; }
.cr-section__lead  { max-width: 720px; margin: 0 auto; }

/* BUTTONS */
.cr-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 20px 32px; border-radius: var(--cr-radius-btn);
	font-weight: 500; font-size: 16px; line-height: 1;
	font-family: var(--cr-font-body);
	border: 0; cursor: pointer;
	transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
	white-space: nowrap;
}
.cr-btn--primary { background: var(--cr-burgundy); color: #fff; }
.cr-btn--primary:hover { background: var(--cr-burgundy-dark); transform: translateY(-1px); box-shadow: var(--cr-shadow-md); color: #fff; }
.cr-btn--cta { padding: 18px 28px; font-size: 15px; min-width: 260px; }

/* ============== FIXED HEADER WRAPPER ============== */
.cr-header {
	position: fixed; top: 0; left: 0; right: 0;
	z-index: 100;
	background: var(--cr-cream);
}

/* ============== TOPBAR ============== */
.cr-topbar-wrap { background: var(--cr-cream); padding-top: 0; }
.cr-topbar {
	background: var(--cr-brown);
	color: #fff;
	border-radius: 0 0 30px 30px;
	padding: 12px 36px;
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px;
	font-size: 14px;
}
.cr-topbar ul { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cr-topbar li { display: inline-flex; align-items: center; gap: 8px; }
.cr-topbar a { color: #fff; }
.cr-topbar a:hover { color: var(--cr-peach); }
.cr-topbar__icon { display: inline-flex; opacity: .9; }
.cr-topbar__sep,
.cr-topbar__divider {
	width: 1px; height: 22px; background: rgba(255,255,255,.18);
	margin: 0 4px; padding: 0;
}
.cr-topbar__social { gap: 14px !important; }
.cr-topbar__social a { display: inline-flex; padding: 4px; transition: color .2s; }

/* Mobile "Call:" pill — hidden on desktop, shown on small screens */
.cr-topbar__mobile {
	display: none;
	align-items: center; justify-content: center;
	gap: 10px;
	color: #fff;
	font-weight: 600; font-size: 16px;
	font-family: var(--cr-font-body);
	width: 100%; padding: 4px 0;
}
.cr-topbar__mobile:hover { color: #fff; opacity: .9; }

@media (max-width: 980px) {
	.cr-topbar {
		background: var(--cr-burgundy);
		flex-direction: column; align-items: center; gap: 0;
		padding: 9px 20px; text-align: center;
		border-radius: 0 0 22px 22px;
	}
	.cr-topbar__desktop { display: none !important; }
	.cr-topbar__mobile { display: inline-flex; font-size: 15px; }
}
@media (max-width: 480px) {
	.cr-topbar { padding: 8px 18px; border-radius: 0 0 18px 18px; }
	.cr-topbar__mobile { font-size: 14px; }
}

/* ============== NAV ============== */
.cr-nav-wrap { background: var(--cr-cream); position: relative; z-index: 60; box-shadow: 0 4px 18px rgba(0,0,0,.04); }
.cr-nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 88px; padding-top: 10px; padding-bottom: 10px; }
.cr-logo img, .cr-logo .custom-logo { max-height: 50px; width: auto; }

.cr-primary-nav { display: flex; align-items: center; }
.cr-menu { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.cr-menu a {
	display: inline-block; padding: 10px 12px; font-weight: 500; font-size: 15px;
	color: var(--cr-heading); transition: color .2s;
	white-space: nowrap;
}
.cr-menu a:hover { color: var(--cr-burgundy); }
.cr-menu .is-active a,
.cr-menu .current-menu-item a { color: var(--cr-burgundy); font-weight: 600; }

.cr-burger { display: none; background: transparent; border: 0; padding: 8px; flex-direction: column; gap: 5px; }
.cr-burger span { width: 26px; height: 2px; background: var(--cr-heading); display: block; transition: .25s; }
.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); }

@media (max-width: 1100px) {
	.cr-nav { min-height: 70px; padding-top: 8px; padding-bottom: 8px; }
	.cr-logo img, .cr-logo .custom-logo { max-height: 42px; }
	.cr-burger { display: inline-flex; position: relative; z-index: 120; }
	.cr-burger[aria-expanded="true"] span { background: #fff; }

	.cr-primary-nav {
		position: fixed; top: 0; right: 0;
		width: 340px; max-width: 88%;
		height: 100vh; height: 100dvh;
		background: var(--cr-brown);
		flex-direction: column; align-items: stretch;
		padding: 88px 0 40px;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform .4s cubic-bezier(.4, 0, .2, 1);
		max-height: none; opacity: 1;
		box-shadow: -16px 0 50px rgba(0, 0, 0, .25);
		z-index: 110;
		border: 0;
	}
	.cr-primary-nav.is-open { transform: translateX(0); }

	.cr-menu { display: flex; flex-direction: column; gap: 0; align-items: stretch; width: 100%; }
	.cr-menu li { width: 100%; }
	.cr-menu a {
		display: block; position: relative;
		color: #fff;
		font-size: 17px; font-weight: 500;
		padding: 16px 32px;
		border-bottom: 1px solid rgba(255, 255, 255, .08);
		transition: padding-left .3s ease, color .25s ease, background .25s ease;
	}
	.cr-menu li:first-child a { border-top: 1px solid rgba(255, 255, 255, .08); }
	.cr-menu a::before {
		content: "";
		position: absolute;
		left: 0; top: 50%;
		width: 4px; height: 0;
		background: var(--cr-burgundy-light);
		transition: height .3s ease;
		transform: translateY(-50%);
	}
	.cr-menu a:hover { padding-left: 44px; color: var(--cr-peach); background: rgba(255, 255, 255, .04); }
	.cr-menu a:hover::before { height: 60%; }
	.cr-menu .is-active a,
	.cr-menu .current-menu-item a {
		color: var(--cr-peach);
		background: rgba(92, 2, 45, .22);
	}
	.cr-menu .is-active a::before,
	.cr-menu .current-menu-item a::before { height: 60%; }

	.cr-nav-overlay {
		position: fixed; inset: 0;
		background: rgba(42, 32, 15, .55);
		opacity: 0; visibility: hidden;
		transition: opacity .35s ease, visibility 0s .35s;
		z-index: 105;
	}
	.cr-nav-overlay.is-active {
		opacity: 1; visibility: visible;
		transition: opacity .35s ease;
	}
	body.cr-nav-open { overflow: hidden; }
}
@media (max-width: 480px) {
	.cr-nav { min-height: 60px; }
	.cr-logo img, .cr-logo .custom-logo { max-height: 36px; }
	.cr-primary-nav { padding-top: 76px; }
}

/* ============== HERO ============== */
.cr-hero {
	background: linear-gradient(217deg, var(--cr-brown) 44%, var(--cr-burgundy-light) 100%);
	color: #fff;
	padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 9vw, 120px);
}
.cr-hero__grid {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: clamp(36px, 5vw, 80px); align-items: start;
}
.cr-hero h1, .cr-hero p { color: #fff; }
.cr-hero__copy { padding-top: 6px; }
.cr-hero__eyebrow { font-size: 16px; font-weight: 400; color: rgba(255,255,255,.85); margin: 0 0 28px; }
.cr-hero__title {
	font-size: clamp(30px, 3.6vw, 50px);
	font-weight: 700; line-height: 1.12; margin: 0 0 22px;
}
.cr-hero__sub { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.92); margin: 0 0 10px; max-width: 56ch; }
.cr-hero__sub--last { margin-bottom: 22px; }

.cr-hero__bullets { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px 22px; margin: 22px 0; }
.cr-hero__bullets li { display: inline-flex; gap: 8px; align-items: center; font-size: 14px; color: #fff; }
.cr-hero__bullet-icon {
	width: 18px; height: 18px; color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.cr-hero__bullet-icon svg { fill: #fff; }
/* Variant without check-circle icons (e.g. cedar-shake) — text-only bullets with subtle separators */
.cr-hero__bullets--no-icon { gap: 6px 18px; }
.cr-hero__bullets--no-icon li { font-weight: 500; opacity: .92; }

.cr-hero__google {
	display: inline-flex; align-items: center; gap: 14px;
	background: #fff; color: var(--cr-heading);
	padding: 12px 22px; border-radius: 8px;
	margin-top: 24px; font-size: 16px; font-weight: 600;
	box-shadow: 0 4px 14px rgba(0,0,0,.18);
	font-family: var(--cr-font-display);
}
.cr-hero__google svg { display: inline-block; }
.cr-hero__google .cr-stars { display: inline-flex; gap: 2px; align-items: center; }
.cr-hero__google .cr-stars svg { width: 18px; height: 18px; }
.cr-hero__google strong { font-weight: 700; font-size: 18px; color: var(--cr-heading); }
.cr-hero__google .cr-sep { color: var(--cr-border); margin: 0 2px; font-weight: 400; }

.cr-hero__form-wrap { width: 100%; }
.cr-hero__form {
	background: #fff;
	border-radius: 18px;
	padding: clamp(20px, 2.3vw, 32px);
	box-shadow: 0 30px 60px rgba(0,0,0,.25);
}
/* Form sits on a white card inside the dark hero. The global `.cr-hero p {
   color:#fff }` rule (line ~262) would otherwise repaint every <p> inside
   the form white-on-white. Force dark text for the whole form scope. */
.cr-hero .cr-hero__form,
.cr-hero .cr-hero__form p,
.cr-hero .cr-hero__form label { color: var(--cr-text); }
.cr-hero__form-head { margin-bottom: 18px; }
.cr-hero__form-title { font-size: 22px; font-weight: 700; color: var(--cr-heading); margin: 0 0 6px; line-height: 1.2; }
.cr-hero .cr-hero__form-intro { font-size: 14px; color: var(--cr-text); margin: 0; line-height: 1.5; }
.cr-hero__below-cta { margin-top: 16px; }
.cr-hero__below-cta p { margin: 0 0 4px; font-size: 13px; color: var(--cr-heading); line-height: 1.55; }
.cr-hero__below-cta .cr-hero__disclaimer { color: var(--cr-text-muted); font-size: 12px; margin-top: 8px; }

/* Offer banner — peach/orange bold lines under subtitle. Now renders each
   line as its own <p> inside the wrapper <div>, so each promo bullet stacks
   on its own row. Specificity overrides the global `.cr-hero p {color:#fff}`. */
.cr-hero__offer-banner {
	color: #f7d8ad;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.4;
	margin: 18px 0 24px;
	max-width: 600px;
}
.cr-hero .cr-hero__offer-banner p {
	color: #f7d8ad;
	margin: 0 0 4px;
	line-height: 1.4;
}
.cr-hero .cr-hero__offer-banner p:last-child { margin-bottom: 0; }

/* Offer block under H2 subtitle */
.cr-hero__offer {
	display: flex; flex-direction: column; gap: 8px;
	margin: 18px 0 22px;
	padding: 14px 18px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 10px;
	max-width: 520px;
}
.cr-hero__offer li {
	display: flex; align-items: center; gap: 10px;
	color: #fff; font-size: 14.5px; font-weight: 500;
}
.cr-hero__offer-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 22px; height: 22px;
	background: var(--cr-burgundy);
	color: #fff;
	border-radius: 50%;
	flex-shrink: 0;
}

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

/* ============== TRUST BAR (under hero) ============== */
/* Horizontal credentials strip sitting directly under hero. White card on
   cream background, lifted up slightly into the hero's bottom edge so it
   reads as a credential summary belonging to the hero block. */
.cr-trust-bar {
	background: var(--cr-cream);
	padding: 0;
	margin-top: calc(-1 * clamp(40px, 5vw, 64px));
	position: relative;
	z-index: 3;
}
.cr-trust-bar .cr-container { position: relative; }
.cr-trust-bar__grid {
	display: grid;
	grid-template-columns: repeat(var(--cr-tb-cols, 4), 1fr);
	background: #fff;
	border: 1px solid var(--cr-border-soft);
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
	overflow: hidden;
}
.cr-trust-bar__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 22px 18px;
	text-align: center;
	border-right: 1px solid var(--cr-border-soft);
	min-height: 96px;
	text-decoration: none;
	color: inherit;
}
.cr-trust-bar__item:last-child { border-right: 0; }
.cr-trust-bar__label {
	font: 600 11px/1.2 var(--cr-font-body);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cr-text-muted);
}
.cr-trust-bar__value {
	font: 700 18px/1.25 var(--cr-font-display);
	color: var(--cr-heading);
}

/* Google variant — keep stars and number on same line as logo */
.cr-trust-bar__item--google { transition: background .2s ease; }
.cr-trust-bar__item--google:hover { background: rgba(92, 2, 45, 0.03); }
.cr-trust-bar__value--google {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 16px;
}
.cr-trust-bar__google-num { font-weight: 800; color: var(--cr-heading); }
.cr-trust-bar__stars { display: inline-flex; gap: 1px; }
.cr-trust-bar__google-reviews {
	font: 500 12px/1.2 var(--cr-font-body);
	color: var(--cr-text-muted);
	margin-top: 2px;
}

@media (max-width: 880px) {
	.cr-trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
	.cr-trust-bar__item:nth-child(2n) { border-right: 0; }
	.cr-trust-bar__item:nth-child(-n+2) { border-bottom: 1px solid var(--cr-border-soft); }
}
@media (max-width: 480px) {
	.cr-trust-bar { margin-top: calc(-1 * clamp(20px, 4vw, 32px)); }
	.cr-trust-bar__grid { grid-template-columns: 1fr; }
	.cr-trust-bar__item { border-right: 0; border-bottom: 1px solid var(--cr-border-soft); }
	.cr-trust-bar__item:last-child { border-bottom: 0; }
}

/* ============== CF7 FORM (wdt-form-holder) ============== */
.cr-cf7-wrap .wpcf7 form { margin: 0; }
.cr-cf7-wrap .wpcf7-form-control-wrap { display: block; }

.wdt-form-holder { display: flex; flex-direction: column; gap: 18px; }
.wdt-flex1       { display: flex; flex-direction: column; gap: 14px; }
.wdt-flex1 > p   { margin: 0; }

/* Two-column rows: CF7 template wraps two inputs inside ONE <p> separated by
   <br>. We turn that <p> into a 2-col grid and hide the <br>, so First/Last
   sit next to each other and Email/Phone sit next to each other. */
.wdt-innerflex                       { display: block; }
.wdt-innerflex p {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin: 0;
}
.wdt-innerflex br { display: none; }
.wdt-innerflex .wpcf7-form-control-wrap { display: block; width: 100%; }

.wdt-form-holder input[type="text"],
.wdt-form-holder input[type="email"],
.wdt-form-holder input[type="tel"],
.wdt-form-holder input[type="url"],
.wdt-form-holder input[type="number"],
.wdt-form-holder textarea,
.wdt-name1, .wdt-name2, .wdt-email, .wdt-tele, .wdt-textarea {
	width: 100%;
	padding: 16px 18px;
	background: var(--cr-cream);
	border: 1px solid var(--cr-border-soft);
	border-radius: var(--cr-radius-input);
	font: 400 15px/1.4 var(--cr-font-body);
	color: var(--cr-heading);
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
	box-sizing: border-box;
}
.wdt-form-holder input:focus,
.wdt-form-holder textarea:focus {
	border-color: var(--cr-burgundy);
	box-shadow: 0 0 0 3px rgba(92, 2, 45, 0.10);
}
.wdt-textarea, .wdt-form-holder textarea { min-height: 130px; resize: vertical; padding: 16px 18px; }
.wdt-form-holder input::placeholder,
.wdt-form-holder textarea::placeholder { color: rgba(42, 32, 15, .55); }

/* Radio-group section label ("What type of roofing project are you planning?") */
.wdt-flex1 > p > label {
	display: block;
	font: 600 14px/1.4 var(--cr-font-body);
	color: var(--cr-heading);
	margin: 0 0 10px;
}

/* Radio options — clickable cards in a 2x2 grid */
.wdt-form-holder .wpcf7-radio {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.wdt-form-holder .wpcf7-radio .wpcf7-list-item { margin: 0; display: block; }
.wdt-form-holder .wpcf7-radio .wpcf7-list-item label {
	display: flex; align-items: center; gap: 10px;
	padding: 11px 14px;
	background: var(--cr-cream);
	border: 1px solid var(--cr-border-soft);
	border-radius: var(--cr-radius-input);
	cursor: pointer;
	font: 500 13.5px/1.3 var(--cr-font-body);
	color: var(--cr-heading);
	transition: border-color .2s ease, background .2s ease;
}
.wdt-form-holder .wpcf7-radio .wpcf7-list-item label:hover { border-color: var(--cr-burgundy); }
.wdt-form-holder .wpcf7-radio input[type="radio"] {
	width: 16px; height: 16px;
	margin: 0;
	accent-color: var(--cr-burgundy);
	flex-shrink: 0;
}
.wdt-form-holder .wpcf7-radio .wpcf7-list-item-label { display: inline-block; line-height: 1.3; }
.wdt-form-holder .wpcf7-radio .wpcf7-list-item label:has(input:checked) {
	border-color: var(--cr-burgundy);
	background: rgba(92, 2, 45, 0.06);
}

/* Submit-button area — kill the inline float, align LEFT */
.wdt-form-holder table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 4px;
	border: 0;
	display: block;
}
.wdt-form-holder table tbody,
.wdt-form-holder table tr { display: block; }
.wdt-form-holder table td {
	display: block;
	padding: 0;
	border: 0;
	text-align: left;
}
/* Override the CF7-template inline `style="float:right"` on the .butform <td> */
.wdt-form-holder table td.butform,
.wdt-form-holder table td[style*="float"] {
	float: none !important;
	margin: 0 !important;
	text-align: left !important;
}
.wdt-form-holder table p { margin: 0; }

.wdt-submit,
.wdt-form-holder input[type="submit"],
.wdt-form-holder button[type="submit"] {
	background: var(--cr-burgundy);
	color: #fff;
	border: 0;
	font: 600 15px/1.2 var(--cr-font-body);
	padding: 16px 24px;
	border-radius: var(--cr-radius-btn);
	cursor: pointer;
	transition: background .2s ease, transform .2s ease, opacity .2s ease;
	/* Full column width: predictable, premium-looking, never truncates the label
	   on long CTAs like "Schedule My Free Roof Inspection". The previous
	   min-width:220px caused the button to overflow narrower hero form cards. */
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	letter-spacing: 0.02em;
	white-space: normal;
	word-break: keep-all;
}
.wdt-submit:hover,
.wdt-form-holder input[type="submit"]:hover,
.wdt-form-holder button[type="submit"]:hover { background: var(--cr-burgundy-dark); transform: translateY(-1px); }
.wdt-submit:disabled,
.wdt-form-holder input[type="submit"]:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* Inline validation tip under an invalid input */
.cr-cf7-wrap .wpcf7-not-valid-tip {
	color: #b1262a;
	font: 500 13px/1.3 var(--cr-font-body);
	margin-top: 6px;
}
.cr-cf7-wrap .wpcf7-form-control.wpcf7-not-valid {
	border-color: #b1262a !important;
}

/* === Response output — color by form state ===
   CF7 puts the state on the FORM element (form.sent / form.failed /
   form.invalid / form.spam / form.aborted). Without explicit colors the
   message becomes white-on-white inside our hero form (text color inherits
   from the dark hero background). */
.cr-cf7-wrap .wpcf7-response-output {
	margin: 18px 0 0 !important;
	padding: 14px 16px !important;
	border-radius: 8px !important;
	border: 1px solid transparent !important;
	font: 500 14px/1.45 var(--cr-font-body) !important;
	background: var(--cr-cream);
	color: var(--cr-heading) !important;
}
.cr-cf7-wrap .wpcf7 form.sent .wpcf7-response-output {
	background: rgba(34, 139, 34, 0.08) !important;
	border-color: rgba(34, 139, 34, 0.40) !important;
	color: #1d6a1d !important;
}
.cr-cf7-wrap .wpcf7 form.failed .wpcf7-response-output,
.cr-cf7-wrap .wpcf7 form.spam .wpcf7-response-output,
.cr-cf7-wrap .wpcf7 form.aborted .wpcf7-response-output {
	background: rgba(214, 54, 56, 0.08) !important;
	border-color: rgba(214, 54, 56, 0.40) !important;
	color: #b1262a !important;
}
.cr-cf7-wrap .wpcf7 form.invalid .wpcf7-response-output {
	background: rgba(240, 180, 0, 0.10) !important;
	border-color: rgba(240, 180, 0, 0.45) !important;
	color: #7a5500 !important;
}
.cr-cf7-wrap .wpcf7-response-output:empty { display: none !important; }

.cr-cf7-wrap .grecaptcha-badge { box-shadow: none !important; }

@media (max-width: 540px) {
	.wdt-innerflex p          { grid-template-columns: 1fr; }
	.wdt-form-holder .wpcf7-radio { grid-template-columns: 1fr; }
	.wdt-submit { width: 100%; min-width: 0; }
}

/* ============== WHY CHOOSE ============== */
.cr-why { background: var(--cr-cream); padding: clamp(70px, 9vw, 110px) 0; }
.cr-why .cr-section__title { max-width: 22ch; margin: 0 auto 14px; }
.cr-why__grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: clamp(28px, 4vw, 60px);
	text-align: center;
	max-width: 1100px; margin: 0 auto;
}
.cr-why__col { text-align: center; }
.cr-why__title {
	color: var(--cr-burgundy);
	font-family: var(--cr-font-display);
	font-weight: 700;
	font-size: clamp(20px, 1.7vw, 26px);
	line-height: 1.2; margin: 0 0 16px;
}
.cr-why__text { font-size: 15px; line-height: 1.65; margin: 0; color: var(--cr-text); }
@media (max-width: 880px) { .cr-why__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============== RECOGNIZED BY LEADING INDUSTRY ============== */
.cr-recognized { background: var(--cr-cream); padding: 0 0 clamp(60px, 8vw, 100px); }
.cr-recognized__head { text-align: center; margin-bottom: 40px; }
.cr-recognized__head h2 { margin: 0; }
.cr-recognized__row {
	display: flex; align-items: center; justify-content: center;
	gap: clamp(20px, 4vw, 60px);
	flex-wrap: wrap;
}
.cr-recognized__row img {
	max-height: 140px; width: auto;
	transition: transform .25s ease;
}
.cr-recognized__row img:hover { transform: translateY(-4px); }

/* ============== THREE SITUATIONS (3 photo cards) ============== */
.cr-situations { background: var(--cr-cream); padding: clamp(60px, 8vw, 100px) 0; }
.cr-situations .cr-section__head { margin-bottom: clamp(40px, 5vw, 60px); }
.cr-situations .cr-section__title { max-width: 30ch; margin: 0 auto; }
.cr-situations__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(24px, 3vw, 32px);
}
.cr-situations__card {
	background: #fff;
	border-radius: var(--cr-radius-card);
	overflow: hidden;
	box-shadow: var(--cr-shadow-sm);
	display: flex; flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
}
.cr-situations__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cr-shadow-md);
}
.cr-situations__media {
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--cr-brown);
}
.cr-situations__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.cr-situations__card:hover .cr-situations__media img { transform: scale(1.05); }
.cr-situations__media::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(42,32,15,0) 50%, rgba(42,32,15,.55) 100%);
}
.cr-situations__tag {
	position: absolute; top: 16px; left: 16px; z-index: 2;
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 14px;
	background: var(--cr-burgundy);
	color: #fff;
	font: 700 11px/1 var(--cr-font-body);
	letter-spacing: 1.2px;
	text-transform: uppercase;
	border-radius: 100px;
}
.cr-situations__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.cr-situations__title {
	font-family: var(--cr-font-display);
	font-size: clamp(18px, 1.55vw, 22px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--cr-heading);
	margin: 0 0 12px;
}
.cr-situations__text {
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--cr-text);
	margin: 0;
}
@media (max-width: 980px) {
	.cr-situations__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============== SERVICES (Systems & Services - 2-col, sticky image right) ============== */
.cr-services { background: var(--cr-cream); padding: clamp(70px, 9vw, 110px) 0; }
.cr-services__grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: flex-start;
}
.cr-services__copy { min-width: 0; }
.cr-section__head--left { text-align: left; }
.cr-section__head--left .cr-section__title { margin: 0 0 18px; max-width: 22ch; }
.cr-services__prose p {
	font-size: 16px; line-height: 1.7; color: var(--cr-text);
	margin: 0 0 28px;
}
.cr-services__list {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-direction: column; gap: 18px;
}
.cr-services__item {
	display: flex; align-items: flex-start; gap: 14px;
}
.cr-services__bullet {
	display: inline-flex; align-items: center; justify-content: center;
	width: 26px; height: 26px;
	background: var(--cr-burgundy);
	color: #fff;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 2px;
}
.cr-services__item p {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.65;
	color: var(--cr-text);
}
.cr-services__item p strong {
	color: var(--cr-heading);
	font-weight: 700;
}
.cr-services__media {
	position: sticky; top: 140px;
	border-radius: var(--cr-radius-card);
	overflow: hidden;
	box-shadow: var(--cr-shadow-md);
	aspect-ratio: 4/5;
}
.cr-services__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
@media (max-width: 980px) {
	.cr-services__grid { grid-template-columns: 1fr; gap: 32px; }
	.cr-services__media { position: static; aspect-ratio: 16/10; order: -1; }
}

/* ============== WHY TRUST (3 or 4-col plain text — metal-roofing & metal-work LPs) ============== */
.cr-why-trust { background: var(--cr-cream); padding: clamp(70px, 9vw, 110px) 0; }
.cr-why-trust .cr-section__head { margin-bottom: clamp(50px, 6vw, 80px); }
.cr-why-trust .cr-section__title { max-width: 24ch; margin: 0 auto; }
.cr-why-trust__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: clamp(36px, 5vw, 64px);
	max-width: 1300px; margin: 0 auto;
	text-align: center;
}
.cr-why-trust__grid--4 { grid-template-columns: repeat(4, 1fr); }
.cr-why-trust__grid--3 { grid-template-columns: repeat(3, 1fr); }
.cr-why-trust__card { background: transparent; padding: 0; border: 0; }
.cr-why-trust__icon { display: none; }
.cr-why-trust__title {
	font-family: var(--cr-font-display);
	font-size: clamp(20px, 1.7vw, 26px);
	font-weight: 700;
	line-height: 1.25;
	color: var(--cr-burgundy);
	margin: 0 0 22px;
	letter-spacing: 0.01em;
}
.cr-why-trust__text {
	font-size: 15.5px;
	line-height: 1.7;
	color: var(--cr-text);
	margin: 0;
}
@media (max-width: 980px) {
	.cr-why-trust__grid,
	.cr-why-trust__grid--4,
	.cr-why-trust__grid--3 { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 540px) {
	.cr-why-trust__grid,
	.cr-why-trust__grid--4,
	.cr-why-trust__grid--3 { grid-template-columns: 1fr; }
}

/* ============== CERTIFICATION BADGES (3-col detailed — metal-work LP) ============== */
.cr-certb { background: var(--cr-cream); padding: clamp(60px, 8vw, 100px) 0; }
.cr-certb .cr-section__head { margin-bottom: clamp(50px, 6vw, 80px); text-align: center; }
.cr-certb .cr-section__title { max-width: 26ch; margin: 0 auto; }
.cr-certb__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(40px, 5vw, 80px);
	max-width: 1300px; margin: 0 auto;
	align-items: start;
}
.cr-certb__grid--4 {
	grid-template-columns: repeat(4, 1fr);
	max-width: 1400px;
	gap: clamp(28px, 3vw, 56px);
}
@media (max-width: 1100px) {
	.cr-certb__grid--4 { grid-template-columns: repeat(2, 1fr); max-width: 880px; }
}
.cr-certb__card { text-align: left; padding: 0; }
.cr-certb__media {
	width: 100%;
	min-height: 240px;
	margin: 0 auto 36px;
	display: flex; align-items: center; justify-content: center;
	background: transparent;
	border-radius: 0;
	padding: 0;
}
.cr-certb__media img {
	max-width: 100%;
	max-height: 240px;
	width: auto;
	height: auto;
	object-fit: contain;
}
/* Milestone card — text-only (no logo) for "75+ Years" type credentials.
   Renders a stylized display-font panel that visually matches a cert badge. */
.cr-certb__media--text {
	flex-direction: column;
	gap: 6px;
	background: #fff;
	border: 1px solid var(--cr-border-soft);
	border-radius: 12px;
	padding: 28px 20px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
}
.cr-certb__milestone-num {
	font-family: var(--cr-font-display);
	font-weight: 800;
	font-size: clamp(48px, 5vw, 76px);
	line-height: 1;
	color: var(--cr-burgundy);
	letter-spacing: -0.02em;
}
.cr-certb__milestone-sub {
	font: 600 12px/1.2 var(--cr-font-body);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cr-text-muted);
}
.cr-certb__title {
	font-family: var(--cr-font-display);
	font-size: clamp(20px, 1.7vw, 26px);
	font-weight: 700;
	line-height: 1.25;
	color: var(--cr-heading);
	margin: 0 0 18px;
	text-align: left;
}
.cr-certb__text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--cr-text);
	margin: 0;
	max-width: 100%;
	text-align: left;
}
.cr-certb__text strong { color: var(--cr-heading); font-weight: 700; }
@media (max-width: 880px) {
	.cr-certb__grid { grid-template-columns: 1fr; gap: 48px; max-width: 480px; }
	.cr-certb__card { text-align: center; }
	.cr-certb__title, .cr-certb__text { text-align: center; }
}

/* ============== CUSTOM METAL WORK (image left + copy/bullets right — metal-work LP) ============== */
.cr-custmetal { background: #fff; padding: clamp(70px, 9vw, 110px) 0; }
.cr-custmetal__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: center;
	max-width: 1200px; margin: 0 auto;
}
.cr-custmetal__media {
	margin: 0;
	border-radius: var(--cr-radius-card);
	overflow: hidden;
	box-shadow: var(--cr-shadow-md);
	aspect-ratio: 4/3;
}
.cr-custmetal__media img {
	width: 100%; height: 100%; object-fit: cover; display: block;
}
.cr-custmetal__title {
	font-family: var(--cr-font-display);
	font-size: clamp(28px, 2.8vw, 42px);
	font-weight: 800;
	color: var(--cr-heading);
	line-height: 1.1;
	margin: 0 0 22px;
	text-align: left;
	letter-spacing: -0.01em;
	max-width: 16ch;
}
.cr-custmetal__lead {
	font-size: 16px;
	line-height: 1.7;
	color: var(--cr-text);
	margin: 0 0 26px;
}
.cr-custmetal__list {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-direction: column; gap: 12px;
}
.cr-custmetal__item {
	display: flex; align-items: flex-start; gap: 14px;
	background: transparent;
	border-left: 0;
	border-radius: 0;
	padding: 0;
	font-size: 15.5px;
	line-height: 1.55;
	color: var(--cr-heading);
	font-weight: 400;
}
.cr-custmetal__item > span:last-child { padding-top: 1px; }
.cr-custmetal__item strong { font-weight: 700; color: var(--cr-heading); }
.cr-custmetal__bullet {
	display: inline-flex; align-items: center; justify-content: center;
	width: 22px; height: 22px;
	background: var(--cr-burgundy);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 3px;
}
@media (max-width: 880px) {
	.cr-custmetal__grid { grid-template-columns: 1fr; gap: 30px; }
	.cr-custmetal__title { max-width: 100%; }
}

/* ============== HOW WE INSPECT (3 cards with icon + faded big number — metal-work LP) ============== */
.cr-howwe { background: var(--cr-cream); padding: clamp(70px, 9vw, 110px) 0; }
.cr-howwe .cr-section__head { margin-bottom: clamp(40px, 5vw, 60px); }
.cr-howwe .cr-section__title { max-width: 26ch; margin: 0 auto; }
.cr-howwe__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 2.5vw, 32px);
	max-width: 1200px; margin: 0 auto;
}
.cr-howwe__card {
	position: relative;
	background: #fff;
	border-radius: var(--cr-radius-card);
	padding: clamp(32px, 3.5vw, 44px);
	min-height: 320px;
	display: flex; flex-direction: column;
	box-shadow: var(--cr-shadow-sm);
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
	isolation: isolate;
}
/* Hover background photo with theme-color overlay */
.cr-howwe__card::before {
	content: "";
	position: absolute; inset: 0;
	background-image: var(--cr-howwe-bg, none);
	background-size: cover; background-position: center;
	opacity: 0;
	transition: opacity .35s ease;
	z-index: -2;
}
.cr-howwe__card::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(217deg, rgba(42,32,15,.92) 44%, rgba(116,43,61,.92) 100%);
	opacity: 0;
	transition: opacity .35s ease;
	z-index: -1;
}
.cr-howwe__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cr-shadow-md);
}
.cr-howwe__card:hover::before,
.cr-howwe__card:hover::after { opacity: 1; }
.cr-howwe__card:hover .cr-howwe__icon,
.cr-howwe__card:hover .cr-howwe__title,
.cr-howwe__card:hover .cr-howwe__text { color: #fff; }
.cr-howwe__card:hover .cr-howwe__num { color: rgba(255,255,255,.25); }

.cr-howwe__head {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 28px;
}
.cr-howwe__icon {
	width: 48px; height: 48px;
	color: var(--cr-heading);
	display: inline-flex; align-items: center; justify-content: center;
	transition: color .3s ease;
}
.cr-howwe__icon svg { width: 100%; height: 100%; }
.cr-howwe__num {
	font-family: var(--cr-font-display);
	font-size: clamp(56px, 6vw, 80px);
	font-weight: 700;
	line-height: 0.9;
	color: #d8d1c4;
	letter-spacing: -0.04em;
	font-variant-numeric: tabular-nums;
	transition: color .3s ease;
}
.cr-howwe__title {
	font-family: var(--cr-font-display);
	font-size: clamp(18px, 1.5vw, 22px);
	font-weight: 700;
	color: var(--cr-heading);
	margin: 0 0 14px;
	transition: color .3s ease;
}
.cr-howwe__text {
	font-size: 15px;
	line-height: 1.65;
	color: var(--cr-text);
	margin: 0;
	transition: color .3s ease;
}
@media (max-width: 880px) { .cr-howwe__grid { grid-template-columns: 1fr; } }

/* ============== CASE STUDY (Good Neighbors — image+text 2-col) ============== */
.cr-casestudy { background: #fff; padding: clamp(70px, 9vw, 110px) 0; }
.cr-casestudy__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: center;
	max-width: 1200px; margin: 0 auto;
}
.cr-casestudy__media {
	margin: 0;
	border-radius: var(--cr-radius-card);
	overflow: hidden;
	box-shadow: var(--cr-shadow-md);
	aspect-ratio: 4/3;
}
.cr-casestudy__media img {
	width: 100%; height: 100%;
	object-fit: cover; display: block;
}
.cr-casestudy__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--cr-burgundy);
	margin: 0 0 14px;
}
.cr-casestudy__title {
	font-family: var(--cr-font-display);
	font-size: clamp(28px, 2.8vw, 40px);
	font-weight: 800;
	line-height: 1.15;
	color: var(--cr-heading);
	margin: 0 0 20px;
	letter-spacing: -0.01em;
}
.cr-casestudy__text {
	font-size: 16px;
	line-height: 1.7;
	color: var(--cr-text);
	margin: 0;
}
@media (max-width: 880px) {
	.cr-casestudy__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============== METAL WORK GALLERY (Swiper carousel + lightbox — metal-work LP) ============== */
.cr-mgal { background: #fff; padding: clamp(60px, 8vw, 100px) 0; }
.cr-mgal .cr-section__head { margin-bottom: clamp(36px, 4.5vw, 56px); }
.cr-mgal .cr-section__title { text-align: center; }
.cr-mgal__wrap { position: relative; padding: 0 56px; }
.cr-swiper--mgal { overflow: hidden; }
.cr-swiper--mgal .swiper-slide { height: auto; }
.cr-mgal__cell {
	display: block; width: 100%;
	margin: 0; padding: 0; border: 0;
	background: var(--cr-cream);
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 3/4;
	box-shadow: var(--cr-shadow-sm);
	transition: transform .25s ease, box-shadow .25s ease;
	cursor: zoom-in;
	position: relative;
}
.cr-mgal__cell::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(42,32,15,.35), transparent 50%);
	opacity: 0; transition: opacity .25s ease;
	pointer-events: none;
}
.cr-mgal__cell:hover { transform: translateY(-4px); box-shadow: var(--cr-shadow-md); }
.cr-mgal__cell:hover::after { opacity: 1; }
.cr-mgal__cell img {
	width: 100%; height: 100%;
	object-fit: cover; display: block;
	transition: transform .6s ease;
}
.cr-mgal__cell:hover img { transform: scale(1.06); }
.cr-mgal__nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 44px; height: 44px;
	background: var(--cr-burgundy); color: #fff;
	border: 0; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer; z-index: 5;
	box-shadow: 0 4px 14px rgba(0,0,0,.15);
	transition: background .2s ease, transform .2s ease;
}
.cr-mgal__nav:hover { background: var(--cr-burgundy-light); transform: translateY(-50%) scale(1.05); }
.cr-mgal__nav--prev { left: 0; }
.cr-mgal__nav--next { right: 0; }
@media (max-width: 720px) {
	.cr-mgal__wrap { padding: 0 36px; }
	.cr-mgal__nav { width: 38px; height: 38px; }
}

/* ============== LIGHTBOX (image overlay — metal-work gallery) ============== */
.cr-lightbox {
	position: fixed; inset: 0; z-index: 9000;
	background: rgba(20, 15, 10, .92);
	display: none; align-items: center; justify-content: center;
	padding: clamp(20px, 4vw, 60px);
}
.cr-lightbox.is-open { display: flex; animation: crLbFade .25s ease both; }
@keyframes crLbFade { from { opacity: 0; } to { opacity: 1; } }
.cr-lightbox__stage {
	margin: 0;
	max-width: 1200px; max-height: 100%;
	display: flex; align-items: center; justify-content: center;
}
.cr-lightbox__img {
	max-width: 100%; max-height: 86vh;
	display: block; object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.cr-lightbox__close {
	position: absolute; top: 18px; right: 22px;
	width: 44px; height: 44px;
	background: rgba(255,255,255,.12); color: #fff;
	border: 0; border-radius: 50%;
	font-size: 28px; line-height: 1; font-weight: 300;
	cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	transition: background .2s ease;
}
.cr-lightbox__close:hover { background: rgba(255,255,255,.22); }
.cr-lightbox__nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 54px; height: 54px;
	background: rgba(255,255,255,.12); color: #fff;
	border: 0; border-radius: 50%;
	cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	transition: background .2s ease;
}
.cr-lightbox__nav:hover { background: rgba(255,255,255,.22); }
.cr-lightbox__nav--prev { left: 24px; }
.cr-lightbox__nav--next { right: 24px; }
.cr-lightbox__count {
	position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
	color: rgba(255,255,255,.7); font-size: 13px;
	font-feature-settings: "tnum";
}
@media (max-width: 720px) {
	.cr-lightbox__nav { width: 42px; height: 42px; }
	.cr-lightbox__nav--prev { left: 10px; }
	.cr-lightbox__nav--next { right: 10px; }
}

/* ============== RECOGNIZED BY LEADING INDUSTRY (3 large badges — metal-roofing LP) ============== */
.cr-recogn { background: var(--cr-cream); padding: clamp(40px, 5vw, 70px) 0 clamp(70px, 9vw, 110px); }
.cr-recogn .cr-section__head { margin-bottom: clamp(40px, 5vw, 60px); text-align: center; }
.cr-recogn .cr-section__title { max-width: 24ch; margin: 0 auto; }
.cr-recogn__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(40px, 5vw, 80px);
	max-width: 1100px; margin: 0 auto;
	align-items: center;
}
.cr-recogn__cell {
	display: flex; align-items: center; justify-content: center;
	min-height: 160px;
}
.cr-recogn__cell img {
	max-width: 100%; max-height: 200px;
	object-fit: contain;
}
@media (max-width: 880px) { .cr-recogn__row { grid-template-columns: 1fr; gap: 32px; } }

/* ============== WHAT YOU GET (image left + 3 stacked numbered benefits — metal-roofing LP) ============== */
.cr-wyg { background: var(--cr-cream); padding: clamp(70px, 9vw, 110px) 0; }
.cr-wyg__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(36px, 5vw, 80px);
	align-items: flex-start;
	max-width: 1300px; margin: 0 auto;
}
.cr-wyg__media {
	position: sticky; top: 140px;
	margin: 0;
	border-radius: var(--cr-radius-card);
	overflow: hidden;
	box-shadow: var(--cr-shadow-md);
	aspect-ratio: 4/5;
}
.cr-wyg__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cr-wyg__content {
	display: flex; flex-direction: column;
	gap: clamp(36px, 4vw, 56px);
}
.cr-wyg__title {
	font-family: var(--cr-font-display);
	font-size: clamp(28px, 2.8vw, 40px);
	font-weight: 800;
	line-height: 1.15;
	color: var(--cr-heading);
	margin: 0 0 8px;
	letter-spacing: -0.01em;
}
.cr-wyg__item-title {
	font-family: var(--cr-font-display);
	font-size: clamp(19px, 1.5vw, 22px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--cr-burgundy);
	margin: 0 0 18px;
}
.cr-wyg__item p {
	font-size: 15.5px;
	line-height: 1.7;
	color: var(--cr-text);
	margin: 0 0 8px;
}
.cr-wyg__item p:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
	.cr-wyg__grid { grid-template-columns: 1fr; gap: 32px; }
	.cr-wyg__media { position: static; aspect-ratio: 16/9; }
}

/* ============== METAL SERVICES (6 photo cards 3×2 — metal-work LP) ============== */
.cr-metalsvc { background: var(--cr-cream); padding: clamp(70px, 9vw, 110px) 0; }
.cr-metalsvc .cr-section__head { margin-bottom: clamp(40px, 5vw, 60px); text-align: center; }
.cr-metalsvc .cr-section__title { max-width: 28ch; margin: 0 auto; font-size: clamp(28px, 2.8vw, 42px); }
.cr-metalsvc__intro { max-width: 70ch; margin: 14px auto 0; color: var(--cr-text); font-size: 16px; line-height: 1.7; }
.cr-metalsvc__footer { margin-top: clamp(36px, 4vw, 56px); text-align: center; }
.cr-metalsvc__closer { color: var(--cr-heading); font-weight: 600; font-size: 18px; margin: 0 0 18px; }
.cr-metalsvc__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(24px, 3vw, 36px);
	max-width: 1300px; margin: 0 auto;
}
.cr-metalsvc__card {
	background: var(--cr-cream);
	border-radius: var(--cr-radius-card);
	overflow: hidden;
	box-shadow: var(--cr-shadow-sm);
	display: flex; flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
}
.cr-metalsvc__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cr-shadow-md);
}
.cr-metalsvc__media {
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--cr-brown);
}
.cr-metalsvc__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.cr-metalsvc__card:hover .cr-metalsvc__media img { transform: scale(1.05); }
.cr-metalsvc__body {
	padding: 24px 26px 28px;
	display: flex; flex-direction: column; flex: 1;
}
.cr-metalsvc__title {
	font-family: var(--cr-font-display);
	font-size: clamp(22px, 1.8vw, 28px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--cr-heading);
	margin: 0 0 14px;
}
.cr-metalsvc__text {
	font-size: 15px;
	line-height: 1.65;
	color: var(--cr-text);
	margin: 0;
}
.cr-metalsvc__text strong { color: var(--cr-heading); font-weight: 700; }
@media (max-width: 980px) { .cr-metalsvc__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cr-metalsvc__grid { grid-template-columns: 1fr; } }

/* ============== BENEFITS (3 numbered cards - metal LP) ============== */
.cr-benefits { background: #fff; padding: clamp(70px, 9vw, 110px) 0; }
.cr-benefits .cr-section__head { margin-bottom: clamp(40px, 5vw, 60px); }
.cr-benefits .cr-section__title { max-width: 28ch; margin: 0 auto; }
.cr-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(24px, 3vw, 40px);
}
.cr-benefits__card {
	background: var(--cr-cream);
	border-radius: var(--cr-radius-card);
	padding: clamp(32px, 3.5vw, 44px) clamp(28px, 3vw, 36px);
	border-top: 4px solid var(--cr-burgundy);
	transition: transform .25s ease, box-shadow .25s ease;
}
.cr-benefits__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cr-shadow-md);
}
.cr-benefits__num {
	display: block;
	font-family: var(--cr-font-display);
	font-size: clamp(40px, 4.5vw, 56px);
	font-weight: 800;
	line-height: 1;
	color: var(--cr-burgundy);
	margin: 0 0 18px;
	letter-spacing: -0.02em;
}
.cr-benefits__title {
	font-family: var(--cr-font-display);
	font-size: clamp(18px, 1.6vw, 22px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--cr-heading);
	margin: 0 0 14px;
}
.cr-benefits__text {
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--cr-text);
	margin: 0;
}
@media (max-width: 980px) {
	.cr-benefits__grid { grid-template-columns: 1fr; }
}

/* ============== WHY CONRAD (B2B numbered list - 5 reasons) ============== */
.cr-why-b2b {
	background: var(--cr-cream);
	padding: clamp(70px, 9vw, 110px) 0;
}
.cr-why-b2b .cr-section__head { margin-bottom: clamp(48px, 6vw, 72px); }
.cr-why-b2b .cr-section__title { max-width: 28ch; margin: 0 auto; }
.cr-why-b2b__list {
	list-style: none; margin: 0 auto; padding: 0;
	max-width: 980px;
	display: flex; flex-direction: column;
	gap: 0;
}
.cr-why-b2b__item {
	display: grid;
	grid-template-columns: clamp(80px, 9vw, 130px) 1fr;
	gap: clamp(20px, 3vw, 40px);
	align-items: start;
	padding: clamp(28px, 3.5vw, 40px) 0;
	border-top: 1px solid rgba(92, 2, 45, .15);
}
.cr-why-b2b__item:last-child { border-bottom: 1px solid rgba(92, 2, 45, .15); }
.cr-why-b2b__num {
	font-family: var(--cr-font-display);
	font-size: clamp(56px, 7vw, 88px);
	font-weight: 800;
	line-height: 0.95;
	color: var(--cr-burgundy);
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
}
.cr-why-b2b__body { padding-top: clamp(8px, 1vw, 16px); }
.cr-why-b2b__title {
	font-family: var(--cr-font-display);
	font-size: clamp(20px, 1.9vw, 28px);
	font-weight: 700;
	line-height: 1.25;
	color: var(--cr-heading);
	margin: 0 0 12px;
}
.cr-why-b2b__text {
	font-size: 15.5px;
	line-height: 1.7;
	color: var(--cr-text);
	margin: 0;
	max-width: 70ch;
}
@media (max-width: 720px) {
	.cr-why-b2b__item { grid-template-columns: 1fr; gap: 6px; }
	.cr-why-b2b__num { font-size: 48px; }
	.cr-why-b2b__body { padding-top: 0; }
}

/* ============== FINANCING (2-col, image + $500 badge on left, content right) ============== */
.cr-financing {
	background: linear-gradient(217deg, var(--cr-brown) 44%, var(--cr-burgundy-light) 100%);
	color: #fff;
	padding: clamp(70px, 9vw, 110px) 0;
}
.cr-financing__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(36px, 5vw, 70px);
	align-items: center;
}
.cr-financing__media {
	position: relative;
	border-radius: var(--cr-radius-card);
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0,0,0,.35);
	aspect-ratio: 4/5;
}
.cr-financing__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.cr-financing__badge {
	position: absolute;
	right: 22px; bottom: 22px;
	background: var(--cr-burgundy);
	color: #fff;
	border-radius: 14px;
	padding: 18px 22px;
	display: flex; flex-direction: column; align-items: flex-start;
	box-shadow: 0 20px 40px rgba(0,0,0,.35);
	max-width: 70%;
}
.cr-financing__badge-num {
	font-family: var(--cr-font-display);
	font-size: clamp(36px, 4.5vw, 54px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
}
.cr-financing__badge-label {
	font-size: 13px;
	line-height: 1.4;
	margin-top: 6px;
	font-weight: 500;
}
.cr-financing__copy { min-width: 0; }
.cr-financing .cr-section__title { color: #fff; max-width: 22ch; margin: 0 0 14px; }
.cr-financing .cr-section__lead {
	color: rgba(255,255,255,.88);
	font-size: 16px;
	line-height: 1.7;
	margin: 0 0 28px;
}
.cr-financing__list {
	list-style: none; margin: 0 0 24px; padding: 0;
	display: flex; flex-direction: column;
	gap: 14px;
}
.cr-financing__item {
	display: flex; align-items: flex-start; gap: 14px;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 10px;
	padding: 16px 20px;
	color: #fff;
}
.cr-financing__bullet {
	display: inline-flex; align-items: center; justify-content: center;
	width: 26px; height: 26px;
	background: var(--cr-burgundy);
	color: #fff;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 2px;
}
.cr-financing__item-body strong {
	display: block;
	font-size: 15.5px;
	font-weight: 700;
	margin-bottom: 3px;
}
.cr-financing__item-body p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255,255,255,.82);
}
.cr-financing__close {
	color: rgba(255,255,255,.85);
	font-size: 14.5px;
	line-height: 1.65;
	margin: 0 0 24px;
}
.cr-financing__cta { display: flex; justify-content: flex-start; }
@media (max-width: 980px) {
	.cr-financing__grid { grid-template-columns: 1fr; gap: 32px; }
	.cr-financing__media { max-width: 480px; margin: 0 auto; }
}

/* ============== COMPOSITE ROOFING (2-col grid 3 cards — cedar-shake LP) ============== */
.cr-composite { background: #fff; padding: clamp(70px, 9vw, 110px) 0; }
.cr-composite .cr-section__head { margin-bottom: clamp(40px, 5vw, 60px); }
.cr-composite .cr-section__title { max-width: 26ch; margin: 0 auto; }
.cr-composite__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(24px, 3vw, 36px);
	max-width: 1280px; margin: 0 auto;
}
@media (max-width: 1024px) { .cr-composite__grid { grid-template-columns: repeat(2, 1fr); } }
.cr-composite__card {
	background: var(--cr-cream);
	border-radius: var(--cr-radius-card);
	overflow: hidden;
	box-shadow: var(--cr-shadow-sm);
	display: flex; flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
}
.cr-composite__card:hover { transform: translateY(-4px); box-shadow: var(--cr-shadow-md); }
.cr-composite__media { aspect-ratio: 16/10; overflow: hidden; }
.cr-composite__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.cr-composite__card:hover .cr-composite__media img { transform: scale(1.05); }
.cr-composite__body { padding: 28px 32px 32px; }
.cr-composite__title {
	font-family: var(--cr-font-display);
	font-size: clamp(20px, 1.7vw, 26px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--cr-heading);
	margin: 0 0 14px;
}
.cr-composite__text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--cr-text);
	margin: 0;
}
.cr-composite__text strong { color: var(--cr-heading); font-weight: 700; }
@media (max-width: 880px) { .cr-composite__grid { grid-template-columns: 1fr; } }

/* ============== PROCESS (3 cards with image) ============== */
.cr-process { background: #fff; padding: clamp(70px, 9vw, 110px) 0; }
.cr-process .cr-section__head { margin-bottom: clamp(40px, 5vw, 60px); }
.cr-process .cr-section__title { max-width: 28ch; margin: 0 auto; }
.cr-process__grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 2.5vw, 32px);
	max-width: 1300px; margin: 0 auto;
}
.cr-process__card {
	background: #fff;
	border-radius: var(--cr-radius-card);
	overflow: hidden;
	box-shadow: var(--cr-shadow-sm);
	display: flex; flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
}
.cr-process__card:hover { transform: translateY(-3px); box-shadow: var(--cr-shadow-md); }
.cr-process__media { aspect-ratio: 16/10; overflow: hidden; }
.cr-process__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cr-process__card:hover .cr-process__media img { transform: scale(1.04); }
.cr-process__body { padding: 24px 28px 28px; }
.cr-process__title { font-size: 22px; margin: 0 0 8px; }
.cr-process__text { font-size: 14.5px; margin: 0; color: var(--cr-text); }

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

/* ============== ROOF TYPES ============== */
.cr-roof { background: var(--cr-cream); padding: clamp(60px, 8vw, 100px) 0; }
.cr-roof__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.cr-roof__grid--2col { grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1200px; margin: 0 auto; }
.cr-roof__grid--2col .cr-roof__card { aspect-ratio: 16/10; }
.cr-roof__card {
	position: relative; border-radius: var(--cr-radius-card);
	overflow: hidden; aspect-ratio: 1/1;
	box-shadow: var(--cr-shadow-sm);
}
.cr-roof__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cr-roof__card:hover .cr-roof__img { transform: scale(1.05); }
.cr-roof__label {
	position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
	width: calc(100% - 32px);
	background: #fff; color: var(--cr-heading);
	font-family: var(--cr-font-display); font-weight: 700; font-size: 16px;
	text-align: center;
	padding: 12px 14px; border-radius: 8px;
	box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
@media (max-width: 1024px) { .cr-roof__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .cr-roof__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============== CTA BANNER ============== */
.cr-cta { background: var(--cr-brown); color: #fff; padding: clamp(60px, 8vw, 100px) 0; text-align: center; }
.cr-cta__inner { max-width: 800px; margin: 0 auto; }
.cr-cta__eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
	color: #fff; margin: 0 0 22px;
}
.cr-cta__eyebrow-h2 {
	display: block;
	font-family: var(--cr-font-display);
	font-size: clamp(18px, 1.6vw, 24px);
	font-weight: 600;
	color: var(--cr-peach);
	margin: 0 0 12px;
}
.cr-cta__title {
	color: #fff; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.2;
	font-weight: 700; margin: 0 0 22px;
}
.cr-cta__offer { color: #fff; font-size: 15px; margin: 0 0 36px; opacity: .92; }
.cr-cta__buttons { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; }
.cr-cta__disclaimer { color: rgba(255,255,255,.7); font-size: 13px; margin: 0; }

/* ============== MANUFACTURERS ============== */
.cr-mfr { background: var(--cr-cream); padding: clamp(60px, 7vw, 90px) 0; }
.cr-mfr__intro { text-align: center; margin-bottom: 50px; }
.cr-mfr__intro h2 { margin: 0 0 12px; }
.cr-mfr__intro p { margin: 0; max-width: 60ch; margin-left: auto; margin-right: auto; }

.cr-mfr__wrap { position: relative; padding: 0; }
.cr-mfr__card {
	background: #fff;
	border: 1px solid var(--cr-border);
	height: 220px;
	display: flex; align-items: center; justify-content: center;
	padding: 36px 28px;
	transition: background .3s ease;
	overflow: hidden;
	position: relative;
}
.cr-mfr__card .cr-mfr__logo {
	max-height: 110px; max-width: 90%; width: auto; height: auto; object-fit: contain;
	display: block; margin: 0 auto;
	transition: filter .35s ease, transform .35s ease;
	position: relative; z-index: 2;
}
.cr-mfr__card .cr-mfr__bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	opacity: 0;
	transition: opacity .35s ease;
	z-index: 1;
}
.cr-mfr__card .cr-mfr__bg::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(217deg, rgba(42,32,15,.85) 44%, rgba(116,43,61,.85) 100%);
}
.cr-mfr__card:hover .cr-mfr__bg { opacity: 1; }
.cr-mfr__card:hover .cr-mfr__logo {
	filter: brightness(0) invert(1);
}
.cr-mfr__name {
	font-family: var(--cr-font-display); font-weight: 700;
	font-size: clamp(20px, 1.8vw, 26px);
	color: var(--cr-heading); letter-spacing: .03em;
	text-align: center;
	position: relative; z-index: 2;
	transition: color .35s ease;
}
.cr-mfr__card:hover .cr-mfr__name { color: #fff; }

/* ============== WARRANTY ============== */
.cr-warranty { background: var(--cr-cream); padding: clamp(60px, 8vw, 100px) 0; }
.cr-warranty__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 60px);
	text-align: center; max-width: 1100px; margin: 0 auto;
}
/* Plain warranty variant — no card backgrounds, centered burgundy headings (metal-roofing LP) */
.cr-warranty--plain { background: var(--cr-cream); }
.cr-warranty--plain .cr-warranty__grid { grid-template-columns: repeat(3, 1fr); gap: clamp(36px, 5vw, 80px); max-width: 1200px; margin: 0 auto; text-align: center; }
.cr-warranty--plain .cr-warranty__col { background: transparent; padding: 0; border: 0; box-shadow: none; }
.cr-warranty--plain .cr-warranty__title { color: var(--cr-burgundy); font-size: clamp(20px, 1.7vw, 26px); margin-bottom: 20px; }
.cr-warranty--plain .cr-warranty__text { font-size: 15.5px; }
.cr-warranty--plain .cr-warranty__intro { color: var(--cr-text); max-width: 70ch; margin: 14px auto 0; }
.cr-warranty__extra {
	max-width: 72ch; margin: 36px auto 0; text-align: center;
	color: var(--cr-text); font-size: 14px; line-height: 1.7; font-style: italic;
}
.cr-warranty__grid--2 { grid-template-columns: repeat(2, 1fr) !important; max-width: 1100px !important; }
@media (max-width: 880px) {
	.cr-warranty--plain .cr-warranty__grid,
	.cr-warranty--plain .cr-warranty__grid--2 { grid-template-columns: 1fr !important; gap: 40px; }
}

/* Mini CTA (single button — storm-damage LP) */
.cr-cta--mini .cr-cta__title { font-size: clamp(28px, 3.2vw, 44px); max-width: 22ch; margin-left: auto; margin-right: auto; }
.cr-cta--mini .cr-cta__buttons { margin-top: 28px; }

/* Hero form title OUTSIDE white card variant (metal-roofing LP) */
.cr-hero__form-wrap--titleouter .cr-hero__form-title-outer {
	color: #fff;
	font-family: var(--cr-font-display);
	font-size: clamp(20px, 1.8vw, 26px);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 18px;
	display: block;
}
.cr-hero__form-wrap--titleouter .cr-hero__form-head { display: none; }

.cr-warranty__title {
	color: var(--cr-burgundy);
	font-family: var(--cr-font-display);
	font-weight: 700;
	font-size: clamp(20px, 1.8vw, 28px);
	line-height: 1.2; margin: 0 0 16px;
}
.cr-warranty__text { color: var(--cr-text); font-size: 15px; line-height: 1.65; margin: 0; }
@media (max-width: 720px) { .cr-warranty__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============== ABOUT ============== */
.cr-about { background: var(--cr-cream); padding: clamp(60px, 8vw, 100px) 0; }
.cr-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.cr-about__media { position: sticky; top: 120px; }
.cr-about__media img { width: 100%; height: auto; border-radius: var(--cr-radius-card); box-shadow: var(--cr-shadow-md); }
.cr-about__media figcaption { font-size: 13px; margin-top: 12px; color: var(--cr-text); text-align: center; font-style: italic; }
.cr-about__copy { padding-top: 6px; }
.cr-about__title { font-size: clamp(28px, 3vw, 42px); margin: 0 0 22px; }
.cr-about__copy p { font-size: 15px; line-height: 1.65; margin: 0 0 18px; }
.cr-about__bold {
	font-family: var(--cr-font-display);
	font-weight: 800;
	font-size: clamp(20px, 1.7vw, 28px) !important;
	color: var(--cr-heading) !important;
	line-height: 1.3 !important;
	margin: 22px 0 !important;
}
/* Logo strip — multiple cert badges + HGTV in a row. Falls back to a single
   centered logo when only one image is rendered (other LPs). */
.cr-about__extra {
	margin: 28px 0 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
}
.cr-about__extra img { width: auto; max-width: 140px; max-height: 80px; height: auto; object-fit: contain; }
/* When only one logo is present, allow it to grow larger (HGTV-only LPs) */
.cr-about__extra img:only-child { max-width: 220px; max-height: 110px; }
.cr-about__copy p { color: var(--cr-heading); }
.cr-link { color: var(--cr-burgundy); font-weight: 700; font-family: var(--cr-font-display); font-size: 22px; text-decoration: none; }
.cr-link:hover { color: var(--cr-burgundy-dark); text-decoration: underline; }
@media (max-width: 880px) {
	.cr-about__grid { grid-template-columns: 1fr; }
	.cr-about__media { position: static; }
}

/* ============== PORTFOLIO ============== */
.cr-portfolio { background: var(--cr-cream); padding: clamp(60px, 8vw, 100px) 0; }
.cr-portfolio__head { text-align: center; margin-bottom: 40px; position: relative; }
.cr-portfolio__head h2 { margin: 0 0 12px; color: var(--cr-heading); }
.cr-portfolio__head p { margin: 0; max-width: 56ch; margin-left: auto; margin-right: auto; color: var(--cr-heading); }
.cr-portfolio .cr-swiper-nav {
	position: absolute; right: 0; top: 50%; transform: translateY(-50%);
	display: inline-flex; gap: 10px;
}
@media (max-width: 720px) {
	.cr-portfolio .cr-swiper-nav { position: static; transform: none; margin-top: 20px; justify-content: center; }
}

.cr-portfolio__card {
	display: block; width: 100%; padding: 0; border: 0;
	border-radius: var(--cr-radius-card); overflow: hidden;
	background: transparent; position: relative; box-shadow: var(--cr-shadow-sm);
	cursor: pointer;
}
.cr-portfolio__card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s; }
.cr-portfolio__card:hover img { transform: scale(1.05); }
.cr-portfolio__overlay {
	position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: space-between;
	padding: 20px;
	background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
	color: #fff;
}
.cr-portfolio__meta { display: flex; flex-direction: column; text-align: left; line-height: 1.2; gap: 4px; }
.cr-portfolio__meta strong { font-size: 16px; font-weight: 700; font-family: var(--cr-font-display); }
.cr-portfolio__meta small { font-size: 11px; letter-spacing: 1px; opacity: .9; }
.cr-portfolio__play {
	width: 50px; height: 50px; border-radius: 50%;
	background: #fff; color: var(--cr-burgundy);
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

/* ============== TESTIMONIALS ============== */
.cr-reviews {
	background: linear-gradient(217deg, var(--cr-brown) 44%, var(--cr-burgundy-light) 100%);
	color: #fff; text-align: center;
	padding: clamp(60px, 7vw, 90px) 0;
}
.cr-reviews .cr-section__head { margin-bottom: 30px; }
.cr-reviews .cr-section__title { color: #fff; max-width: 24ch; margin: 0 auto; font-size: clamp(28px, 3vw, 40px); }
.cr-reviews__quote { font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6; max-width: 980px; margin: 0 auto 22px; color: rgba(255,255,255,.95); }
.cr-reviews__stars { display: inline-flex; gap: 4px; margin-bottom: 14px; }
.cr-reviews__stars svg { fill: var(--cr-burgundy); }
.cr-reviews__name { color: #fff; font-weight: 700; font-family: var(--cr-font-display); font-size: 18px; margin: 0; }
.cr-reviews__sep { display: block; width: 40px; height: 2px; background: var(--cr-burgundy); margin: 8px auto; }
.cr-reviews__role { color: rgba(255,255,255,.7); margin: 0; font-size: 13px; }
.cr-swiper--reviews { padding-bottom: 40px; }
.cr-swiper--reviews .swiper-slide { padding: 0 20px; }

/* ============== SERVICE AREA ============== */
.cr-area { background: var(--cr-cream); padding: clamp(50px, 6vw, 80px) 0 0; text-align: center; }
.cr-area .cr-section__title { color: var(--cr-heading); }
.cr-area__map { margin-top: 30px; }
.cr-area__map img { width: 100%; max-width: 1400px; height: auto; margin: 0 auto; display: block; }

/* ============== CERTIFICATIONS / THANKS ============== */
.cr-certs, .cr-thanks { background: var(--cr-cream); padding: clamp(60px, 8vw, 100px) 0; }
.cr-certs__head { text-align: center; margin-bottom: 40px; position: relative; }
.cr-certs__head h2 { margin: 0; }
.cr-swiper-nav {
	display: inline-flex; gap: 10px;
	position: absolute; right: 0; top: 50%; transform: translateY(-50%);
}
.cr-swiper-nav__btn {
	width: 50px; height: 50px; border-radius: 4px;
	background: var(--cr-brown); color: #fff; border: 0;
	display: inline-flex; align-items: center; justify-content: center;
	transition: background .2s;
}
.cr-swiper-nav__btn:hover { background: var(--cr-burgundy); }

.cr-certs__card {
	background: #fff;
	border-radius: var(--cr-radius-card); overflow: hidden;
	box-shadow: var(--cr-shadow-sm);
}
.cr-certs__card img { width: 100%; height: auto; display: block; }

@media (max-width: 720px) {
	.cr-swiper-nav { position: static; transform: none; margin-top: 16px; justify-content: center; }
}

/* ============== FOOTER ============== */
.cr-footer { background: var(--cr-brown); color: #fff; }
.cr-footer__info {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px;
	padding: 70px 0 60px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.cr-footer__info > div { text-align: left; }
.cr-footer h4 {
	color: #fff;
	font-family: var(--cr-font-display);
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 20px;
	line-height: 1.15;
}
.cr-footer__list { display: flex; flex-direction: column; gap: 10px; }
.cr-footer__list a, .cr-footer__list li { color: #fff; font-size: 16px; line-height: 1.4; }
.cr-footer__list a:hover { color: var(--cr-peach); }
.cr-footer address { font-style: normal; color: #fff; line-height: 1.75; font-size: 16px; }

.cr-footer__brand {
	display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
	padding: 60px 0;
	align-items: start;
}
.cr-footer__about p { color: #fff; font-size: 15px; line-height: 1.65; margin: 22px 0 26px; max-width: 38ch; }
.cr-footer__logo img { max-width: 240px; height: auto; }
.cr-footer__social { display: flex; gap: 10px; align-items: center; }
.cr-footer__social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px;
	background: var(--cr-burgundy);
	color: #fff;
	border-radius: 6px;
	transition: background .2s ease, transform .2s ease;
}
.cr-footer__social a:hover { background: var(--cr-burgundy-dark); transform: translateY(-2px); }
.cr-footer__social svg { flex-shrink: 0; fill: #fff; }
.cr-footer__social span { display: none; }

.cr-footer__newsletter h4 { margin-bottom: 12px; }
.cr-footer__newsletter p { color: #fff; font-size: 15px; line-height: 1.65; margin: 0 0 22px; max-width: 36ch; }
.cr-newsletter { display: flex; align-items: stretch; background: #fff; border-radius: 8px; padding: 0; gap: 0; max-width: 560px; overflow: hidden; }
.cr-newsletter input[type="email"] { flex: 1; padding: 18px 22px; border: 0; background: transparent; font-size: 15px; color: var(--cr-heading); outline: none; }
.cr-newsletter__btn { padding: 18px 36px; border-radius: 0; font-size: 15px; font-weight: 600; }
.cr-newsletter__btn:disabled { opacity: .65; cursor: progress; }
.cr-newsletter__msg {
	margin: 12px 0 0;
	font-size: 14px;
	color: #fff;
	min-height: 20px;
	max-width: 560px;
}
.cr-newsletter__msg.is-success { color: #aef0c5; }
.cr-newsletter__msg.is-error   { color: #ffb4b4; }

.cr-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: 13px; }
.cr-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.cr-copy { margin: 0; color: rgba(255,255,255,.7); }
.cr-footer__links a { color: rgba(255,255,255,.7); margin-left: 16px; }
.cr-footer__links a:first-child { margin-left: 0; }

@media (max-width: 980px) {
	.cr-footer__info { grid-template-columns: 1fr; gap: 30px; }
	.cr-footer__brand { grid-template-columns: 1fr; gap: 40px; }
}

/* ============== SWIPER COMMON ============== */
.cr-swiper { position: relative; }
.cr-swiper--mfr { padding-bottom: 0; }
.cr-pagination { text-align: center; margin-top: 24px; }
.cr-pagination .swiper-pagination-bullet {
	width: 10px; height: 10px; background: var(--cr-heading); opacity: .25;
	border-radius: 50%; margin: 0 5px !important;
}
.cr-pagination .swiper-pagination-bullet-active { background: var(--cr-burgundy); opacity: 1; }
.cr-pagination--light .swiper-pagination-bullet { background: rgba(255,255,255,.4); }
.cr-pagination--light .swiper-pagination-bullet-active { background: #fff; }

/* ============== VIDEO MODAL ============== */
.cr-video-modal {
	position: fixed; inset: 0;
	background: rgba(0, 0, 0, .88);
	display: none;
	align-items: center; justify-content: center;
	z-index: 9999;
	padding: 24px;
	animation: cr-fade .25s ease;
}
.cr-video-modal.is-open { display: flex; }
.cr-video-modal__inner {
	position: relative;
	width: 100%;
	max-width: 1100px;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: var(--cr-radius-card);
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.cr-video-modal__close {
	position: absolute;
	top: -48px; right: 0;
	background: transparent; color: #fff;
	border: 0; width: 40px; height: 40px;
	font-size: 28px; line-height: 1; cursor: pointer;
	transition: transform .2s ease, color .2s ease;
}
.cr-video-modal__close:hover { transform: scale(1.15); color: var(--cr-peach); }
.cr-video-modal iframe { width: 100%; height: 100%; border: 0; display: block; }
@keyframes cr-fade { from { opacity: 0; } to { opacity: 1; } }
body.cr-modal-open { overflow: hidden; }

/* ============== BACK TO TOP ============== */
.cr-totop {
	position: fixed; right: 22px; bottom: 22px;
	background: var(--cr-burgundy); color: #fff;
	width: 44px; height: 44px; border-radius: 50%; border: 0;
	display: none; align-items: center; justify-content: center;
	box-shadow: var(--cr-shadow-md); font-size: 18px; z-index: 40;
}
.cr-totop.is-visible { display: inline-flex; }
.cr-totop:hover { background: var(--cr-burgundy-dark); }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============== INSURANCE CLAIM SUPPORT (storm-damage LP) ============== */
.cr-insurance { background: var(--cr-cream); padding: clamp(70px, 9vw, 110px) 0; }
.cr-insurance__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(40px, 5vw, 80px);
	align-items: start;
}
.cr-insurance__media {
	margin: 0; border-radius: 14px; overflow: hidden;
	box-shadow: var(--cr-shadow-md);
}
.cr-insurance__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cr-insurance__title {
	margin: 0 0 22px;
	max-width: 24ch;
}
.cr-insurance__lead {
	color: var(--cr-text);
	font-size: 16px; line-height: 1.7;
	margin: 0 0 18px;
}
.cr-insurance__bullets-head {
	color: var(--cr-heading);
	font-weight: 700;
	font-size: 16px;
	margin: 14px 0 14px;
}
.cr-insurance__list {
	list-style: none; margin: 0 0 22px; padding: 0;
	display: flex; flex-direction: column; gap: 12px;
}
.cr-insurance__item {
	display: flex; align-items: flex-start; gap: 14px;
	color: var(--cr-heading);
	font-size: 15.5px; line-height: 1.55;
}
.cr-insurance__bullet {
	display: inline-flex; align-items: center; justify-content: center;
	width: 22px; height: 22px;
	background: var(--cr-burgundy);
	border-radius: 50%;
	flex-shrink: 0; margin-top: 3px;
}
.cr-insurance__closer {
	color: var(--cr-heading);
	font-size: 17px; line-height: 1.5;
	margin: 18px 0 26px;
}
.cr-insurance__cta { margin-top: 24px; }
@media (max-width: 980px) {
	.cr-insurance__grid { grid-template-columns: 1fr; gap: 36px; }
	.cr-insurance__media { max-height: 360px; }
}

/* ============== STORM CHASER WARNING (storm-damage LP) ============== */
.cr-stormchaser {
	background: var(--cr-heading);
	color: #fff;
	padding: clamp(80px, 10vw, 130px) 0;
	position: relative;
	overflow: hidden;
}
.cr-stormchaser::before {
	content: "";
	position: absolute; inset: 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(166, 38, 57, 0.18) 0%, transparent 45%),
		radial-gradient(circle at 85% 80%, rgba(166, 38, 57, 0.14) 0%, transparent 55%);
	pointer-events: none;
}
.cr-stormchaser > * { position: relative; z-index: 1; }
.cr-stormchaser__title {
	color: #fff;
	max-width: 22ch;
	margin: 0 auto;
}
.cr-stormchaser__prose {
	max-width: 68ch;
	margin: clamp(30px, 4vw, 50px) auto 0;
	text-align: center;
}
.cr-stormchaser__prose p {
	color: rgba(255,255,255,.86);
	font-size: 17px; line-height: 1.75;
	margin: 0 0 22px;
}
.cr-stormchaser__prose p:last-child { margin-bottom: 0; }

/* ============== COMPARISON (cedar-shake LP — "Natural vs. Synthetic") ============== */
.cr-cmp { background: #fff; padding: clamp(70px, 9vw, 110px) 0; }
.cr-cmp .cr-section__head { margin-bottom: clamp(28px, 3.5vw, 48px); }
.cr-cmp__title { max-width: 28ch; margin: 0 auto; }
.cr-cmp__intro {
	max-width: 64ch;
	margin: 0 auto clamp(40px, 5vw, 60px);
	text-align: center;
}
.cr-cmp__intro p {
	color: var(--cr-text);
	font-size: 17px;
	line-height: 1.75;
	margin: 0 0 16px;
}
.cr-cmp__intro p:last-child { margin-bottom: 0; }
.cr-cmp__list {
	max-width: 920px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(20px, 2.5vw, 32px);
}
.cr-cmp__item {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: clamp(20px, 3vw, 40px);
	align-items: start;
	padding: clamp(18px, 2vw, 26px) 0;
	border-top: 1px solid rgba(0,0,0,.08);
}
.cr-cmp__item:first-child { border-top: 0; padding-top: 0; }
.cr-cmp__item-title {
	font-family: var(--cr-font-display);
	font-weight: 800;
	font-size: clamp(18px, 1.5vw, 22px);
	color: var(--cr-heading);
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin: 4px 0 0;
}
.cr-cmp__item-text {
	margin: 0;
	color: var(--cr-text);
	font-size: 16px;
	line-height: 1.7;
}
.cr-cmp__summary {
	max-width: 64ch;
	margin: clamp(40px, 5vw, 60px) auto 0;
	text-align: center;
	font-family: var(--cr-font-display);
	font-weight: 600;
	font-size: clamp(18px, 1.6vw, 22px);
	line-height: 1.5;
	color: var(--cr-heading);
	padding: clamp(24px, 3vw, 36px);
	background: var(--cr-cream);
	border-radius: 12px;
	position: relative;
}
.cr-cmp__summary::before {
	content: "";
	position: absolute; top: 0; left: 50%;
	transform: translate(-50%, -50%);
	width: 40px; height: 4px; border-radius: 2px;
	background: var(--cr-burgundy);
}
@media (max-width: 720px) {
	.cr-cmp__item { grid-template-columns: 1fr; gap: 8px; }
	.cr-cmp__item-title { font-size: 18px; }
}

/* ============== COOKIE CONSENT BANNER (GCM v2) ============== */
.cr-cookie {
	position: fixed;
	z-index: 99990;
	right: clamp(16px, 2vw, 28px);
	bottom: clamp(16px, 2vw, 28px);
	left: auto;
	width: min(440px, calc(100vw - 32px));
	max-height: calc(100vh - 32px);
	overflow: visible;
	animation: cr-cookie-in .42s cubic-bezier(.16,.84,.44,1) both;
	font-family: var(--cr-font-body);
}
.cr-cookie[hidden] { display: none; }
@keyframes cr-cookie-in {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}
.cr-cookie__card {
	position: relative;
	background: var(--cr-cream);
	color: var(--cr-heading);
	border-radius: 16px;
	box-shadow: 0 24px 60px -12px rgba(0,0,0,.32), 0 8px 16px -8px rgba(0,0,0,.18);
	padding: 28px 28px 24px;
	overflow: hidden;
	max-height: inherit;
	display: flex; flex-direction: column;
}
.cr-cookie__accent {
	position: absolute; top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--cr-burgundy) 0%, var(--cr-burgundy) 35%, var(--cr-peach, #d8826a) 100%);
}
.cr-cookie__head {
	display: flex; align-items: center; gap: 12px;
	margin: 0 0 10px;
}
.cr-cookie__icon {
	color: var(--cr-burgundy);
	flex-shrink: 0;
}
.cr-cookie__title {
	font-family: var(--cr-font-display);
	font-weight: 800;
	font-size: 19px;
	line-height: 1.2;
	margin: 0;
	color: var(--cr-heading);
	letter-spacing: -0.01em;
}
.cr-cookie__body {
	font-size: 14px;
	line-height: 1.55;
	color: var(--cr-text);
	margin: 0 0 18px;
}
.cr-cookie__body--manage { font-size: 13.5px; margin-bottom: 14px; }
.cr-cookie__link {
	color: var(--cr-burgundy);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	font-weight: 500;
}
.cr-cookie__link:hover { color: var(--cr-burgundy-dark, #7a1f31); }
.cr-cookie__actions {
	display: flex; flex-wrap: wrap; gap: 8px;
	margin-top: auto;
}
.cr-cookie__btn {
	font-family: var(--cr-font-display);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.02em;
	border: 0;
	border-radius: 999px;
	padding: 11px 20px;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, transform .15s ease, border-color .2s ease;
	line-height: 1;
}
.cr-cookie__btn:focus-visible {
	outline: 2px solid var(--cr-burgundy);
	outline-offset: 2px;
}
.cr-cookie__btn--primary {
	background: var(--cr-burgundy);
	color: #fff;
}
.cr-cookie__btn--primary:hover {
	background: var(--cr-burgundy-dark, #7a1f31);
	transform: translateY(-1px);
}
.cr-cookie__btn--ghost {
	background: transparent;
	color: var(--cr-heading);
	border: 1.5px solid rgba(0,0,0,.18);
}
.cr-cookie__btn--ghost:hover {
	border-color: var(--cr-burgundy);
	color: var(--cr-burgundy);
}
.cr-cookie__btn--text {
	background: transparent;
	color: var(--cr-text);
	padding: 11px 12px;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.cr-cookie__btn--text:hover { color: var(--cr-burgundy); }

/* Manage view */
.cr-cookie__back {
	background: transparent; border: 0; color: var(--cr-text);
	width: 32px; height: 32px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: background .2s ease;
	margin-right: -4px;
}
.cr-cookie__back:hover { background: rgba(0,0,0,.06); color: var(--cr-burgundy); }
.cr-cookie__cats {
	list-style: none; padding: 0;
	margin: 0 -4px 16px;
	display: flex; flex-direction: column;
	overflow-y: auto;
	max-height: 320px;
	padding: 4px;
}
.cr-cookie__cat {
	border-top: 1px solid rgba(0,0,0,.08);
	padding: 14px 4px;
}
.cr-cookie__cat:first-child { border-top: 0; padding-top: 6px; }
.cr-cookie__cat-head {
	display: flex; align-items: center; justify-content: space-between;
	gap: 12px;
	margin-bottom: 4px;
}
.cr-cookie__cat-head strong {
	font-family: var(--cr-font-display);
	font-weight: 700;
	font-size: 14px;
	color: var(--cr-heading);
	letter-spacing: -0.01em;
}
.cr-cookie__cat p {
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--cr-text);
	margin: 0;
}
.cr-cookie__pill {
	font-family: var(--cr-font-display);
	font-weight: 600;
	font-size: 10.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--cr-burgundy);
	background: rgba(151, 28, 53, 0.08);
	padding: 4px 10px;
	border-radius: 999px;
}

/* Toggle switch */
.cr-cookie__switch {
	position: relative;
	display: inline-block;
	width: 38px; height: 22px;
	flex-shrink: 0;
	cursor: pointer;
}
.cr-cookie__switch input {
	position: absolute; opacity: 0;
	width: 100%; height: 100%;
	cursor: pointer;
	margin: 0;
}
.cr-cookie__slider {
	position: absolute; inset: 0;
	background: rgba(0,0,0,.22);
	border-radius: 999px;
	transition: background .2s ease;
}
.cr-cookie__slider::before {
	content: "";
	position: absolute;
	left: 3px; top: 3px;
	width: 16px; height: 16px;
	background: #fff;
	border-radius: 50%;
	transition: transform .22s cubic-bezier(.5,1.6,.5,1);
	box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.cr-cookie__switch input:checked + .cr-cookie__slider {
	background: var(--cr-burgundy);
}
.cr-cookie__switch input:checked + .cr-cookie__slider::before {
	transform: translateX(16px);
}
.cr-cookie__switch input:focus-visible + .cr-cookie__slider {
	outline: 2px solid var(--cr-burgundy);
	outline-offset: 2px;
}
.cr-cookie__sr {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* Mobile tuning */
@media (max-width: 540px) {
	.cr-cookie {
		right: 12px; left: 12px; bottom: 12px;
		width: auto;
	}
	.cr-cookie__card { padding: 22px 20px 20px; border-radius: 14px; }
	.cr-cookie__title { font-size: 17px; }
	.cr-cookie__btn { font-size: 13px; padding: 10px 16px; }
	.cr-cookie__btn--text { padding: 10px 8px; }
}

/* Footer link "Cookie Settings" — discrete, blends with other footer links */
.cr-footer__links .cr-cookie-link { cursor: pointer; }

/* ============== LEGAL PAGE (Privacy / Terms / Cookie Policy) ============== */
.cr-legal {
	background: #fff;
	padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 10vw, 140px);
}
.cr-legal__container { max-width: 880px; }
.cr-legal__head {
	margin: 0 0 clamp(36px, 5vw, 56px);
	padding-bottom: clamp(24px, 3vw, 36px);
	border-bottom: 1px solid rgba(0,0,0,.08);
}
.cr-legal__eyebrow {
	font-family: var(--cr-font-display);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cr-burgundy);
	margin: 0 0 14px;
}
.cr-legal__title {
	font-family: var(--cr-font-display);
	font-weight: 800;
	font-size: clamp(32px, 4.5vw, 56px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--cr-heading);
	margin: 0 0 14px;
}
.cr-legal__meta {
	font-size: 14px;
	color: var(--cr-text);
	margin: 0;
	opacity: .8;
}

/* Prose — styles for content from WP editor (Gutenberg / Classic) */
.cr-legal__prose {
	max-width: 70ch;
	font-family: var(--cr-font-body);
	font-size: 16px;
	line-height: 1.75;
	color: var(--cr-text);
}
.cr-legal__prose > * + * { margin-top: 1.1em; }

.cr-legal__prose h2 {
	font-family: var(--cr-font-display);
	font-weight: 800;
	font-size: clamp(22px, 2.3vw, 30px);
	line-height: 1.25;
	color: var(--cr-heading);
	margin: 2.4em 0 0.6em;
	letter-spacing: -0.01em;
}
.cr-legal__prose h2:first-child { margin-top: 0; }
.cr-legal__prose h3 {
	font-family: var(--cr-font-display);
	font-weight: 700;
	font-size: clamp(18px, 1.7vw, 22px);
	line-height: 1.35;
	color: var(--cr-heading);
	margin: 2em 0 0.5em;
}
.cr-legal__prose h4 {
	font-family: var(--cr-font-display);
	font-weight: 700;
	font-size: 17px;
	color: var(--cr-heading);
	margin: 1.6em 0 0.4em;
}

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

.cr-legal__prose a {
	color: var(--cr-burgundy);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color .2s ease;
}
.cr-legal__prose a:hover { color: var(--cr-burgundy-dark, #7a1f31); }

.cr-legal__prose strong { color: var(--cr-heading); font-weight: 700; }
.cr-legal__prose em { font-style: italic; }

.cr-legal__prose ul,
.cr-legal__prose ol {
	margin: 0 0 1.2em;
	padding-left: 1.5em;
}
.cr-legal__prose ul li,
.cr-legal__prose ol li {
	margin: 0.4em 0;
	padding-left: 0.25em;
}
.cr-legal__prose ul li::marker { color: var(--cr-burgundy); }
.cr-legal__prose ol li::marker {
	font-family: var(--cr-font-display);
	font-weight: 700;
	color: var(--cr-burgundy);
}

.cr-legal__prose blockquote {
	margin: 1.6em 0;
	padding: 0.6em 0 0.6em 1.4em;
	border-left: 3px solid var(--cr-burgundy);
	color: var(--cr-heading);
	font-style: italic;
}

.cr-legal__prose hr {
	border: 0;
	height: 1px;
	background: rgba(0,0,0,.08);
	margin: 2.4em 0;
}

.cr-legal__prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.4em 0;
	font-size: 15px;
}
.cr-legal__prose th,
.cr-legal__prose td {
	padding: 12px 14px;
	border-bottom: 1px solid rgba(0,0,0,.08);
	text-align: left;
	vertical-align: top;
}
.cr-legal__prose th {
	font-family: var(--cr-font-display);
	font-weight: 700;
	color: var(--cr-heading);
	background: var(--cr-cream);
}

.cr-legal__prose code {
	font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
	font-size: 0.92em;
	background: var(--cr-cream);
	padding: 0.15em 0.4em;
	border-radius: 4px;
	color: var(--cr-heading);
}
.cr-legal__prose pre {
	background: var(--cr-cream);
	padding: 1em 1.2em;
	border-radius: 8px;
	overflow-x: auto;
	margin: 1.4em 0;
}
.cr-legal__prose pre code { background: transparent; padding: 0; }

.cr-legal__prose img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.4em 0; }

/* Address block — common in legal contact sections */
.cr-legal__prose address {
	font-style: normal;
	margin: 1em 0;
	padding: 16px 20px;
	background: var(--cr-cream);
	border-radius: 8px;
	border-left: 3px solid var(--cr-burgundy);
}
