/* =========================================
GLOBAL
========================================= */
:root {
	--color-primary: #fddd01;
	--color-primary-dark: #e8c900;
	--color-gold: #BFA800;
	--color-black: #000000;
	--color-dark: #212529;
	--color-dark-soft: #212226;
	--color-gray-900: #222222;
	--color-gray-700: #333333;
	--color-gray-600: #555555;
	--color-gray-500: #666666;
	--color-gray-400: #808080;
	--color-gray-300: #999999;
	--color-gray-200: #111111;
	--color-border: #dcdcdc;
	--color-cream: #fffdee;
	--color-panel: #f8f9fb;
	--color-white: #ffffff;
	--color-yellow: #FDE600;
	--color-yellow-dark: #FDDC00;

	--font-body: 'Inter', sans-serif;

	--container-width: 1360px;
	--container-pad: 20px;

	--font-size-body: 16px;
	--font-size-small: 14px;
	--font-size-h1: 45px;
	--font-size-h2: 42px;
	--font-size-h3: 28px;
	--font-size-h4: 24px;
	--font-size-h5: 22px;
	--font-size-h6: 20px;

	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 15px;
	--radius-pill: 999px;

	--transition-base: all 0.3s ease;
	--transition-default: all .3s ease-in-out;
	--transition-transform: transform 0.3s ease;
	--transition-transform-slow: transform 0.5s ease;

	--shadow-card: 0 4px 18px rgba(0, 0, 0, 0.06);
}
*, *::before, *::after {
	box-sizing: border-box;
}
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { margin: 0; font-family: var(--font-body); color: var(--color-dark); font-size:var(--font-size-body); background: var(--color-white); line-height: 1.6; overflow-x: hidden; width: 100%; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: underline; color: var(--color-gold);transition:var(--transition-default); }
a:hover { color: var(--color-dark);}
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-body); color: var(--color-gray-700); margin: 0; line-height: 1.2; font-weight:500; margin-bottom:20px; }
h1 { font-size: var(--font-size-h1); font-weight:800; }
h2 { font-size: var(--font-size-h2); font-weight:600; letter-spacing: -1px; }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }
p { margin: 0 0 16px 0; }
p:last-child { margin-bottom: 0; }
button { font-family: inherit; cursor: pointer;transition:var(--transition-default); }
input, select { font-family: inherit; font-size: 0.95rem; }
body.no-scroll { overflow: hidden; }
.container { width: 100%; max-width: var(--container-width); margin-inline: auto; padding-inline: var(--container-pad); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--color-primary); color: var(--color-black); padding: 12px 20px; z-index: 2000; font-weight: 700; border-radius: 0 0 var(--radius-sm) 0; }
.skip-link:focus { left: 0; }
:focus-visible {
	outline: 3px solid var(--color-gold);
	outline-offset: 2px;
}
/* Buttons */
.u-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 9px 30px; border-radius: var(--radius-pill); font-weight: 500;min-height: 46.8px; font-size: 18px; border: 0; white-space: nowrap; transition:var(--transition-default); text-decoration:none; }
.u-button--yellow { background: var(--color-yellow); color: var(--color-black); }
.u-button--yellow:hover { background: var(--color-yellow-dark); box-shadow: 0 10px 20px rgba(253, 221, 1, 0.35); }
.u-button--dark { background: var(--color-gray-700); color: var(--color-white); }
.u-button--dark:hover { background: var(--color-yellow-dark); color: var(--color-black); box-shadow: 0 10px 20px rgba(253, 221, 1, 0.35); }

.u-text-center { text-align: center; }
.u-text-left { text-align: left; }
.u-text-right { text-align: right; }


/* Section heading pattern */
.section-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-eyebrow { color: var(--color-gold); font-weight: 400; font-size: 21px; margin-bottom: 2px !important; text-transform: none; }
.section-title { font-size: var(--font-size-h2); }
.section-title--black {color: var(--color-black);}
.section__subtitle {margin-bottom: 24px;font-size: 18px;}
.section { padding-top:70px; padding-bottom:70px; }
.section--no-padding {padding-top: 0;padding-bottom: 0;}

/* Generic "remove top/bottom space" toggles used by block "Remove Top/Bottom Space" fields */
.u-pt-0 { padding-top: 0 !important; }
.u-pb-0 { padding-bottom: 0 !important; }

/* Restores top padding on a specific Content Intro instance that would
   otherwise default to no-padding-top (block's "Section Classes" field) —
   used by the Careers/Location thank-you pages so their content section is
   padded top and bottom like everywhere else. */
.u-restore-pt.section--no-padding-top { padding-top: 70px; }

/* Placeholder form box — used wherever a real form isn't wired up yet
   (Quote Form Section block, Career apply form, Location "Request a Quote") */
.quote-form { background: var(--color-panel); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); color: var(--color-gray-500); }
.quote-form.no-shadow { box-shadow: none; }
.quote-form__title { font-size: var(--font-size-h4); margin-bottom: 8px; }
.quote-form__subtitle { color: var(--color-gray-600); margin-bottom: 16px !important; }
.quote-form__note { margin: 0; }

/* Black CTA strip — used by the Stats+CTA block, Content Intro block,
   and the single-location "Request a Quote" mini CTA. */
.cta-strip { background: linear-gradient(96.72deg, #000000 0%, #333333 100%); border-radius: 5px; padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-strip h2 { font-size: 21px; font-weight: 700; color: var(--color-white); margin-bottom: 8px; }
.cta-strip__left { width: calc(100% - 270px); }
.cta-strip__text { color: var(--color-white); font-size: 18px; margin-bottom: 0 !important; }
.cta-strip__btn { font-weight: 800; }
.cta-strip--full .cta-strip__left { width: 100%; }
.cta-strip--center { flex-direction: column; justify-content: center; }
.cta-strip__buttons { display: flex; align-items: center; justify-content: center; gap: 16px; }
.cta-strip__space { margin-top: 40px; }

@media (max-width: 1199px) {
	.cta-strip { justify-content: center; text-align: center; }
	.cta-strip__left,
	.cta-strip__text { text-align: center; width: 100%; }
}

@media (max-width: 767px) {
	.cta-strip { flex-direction: column; align-items: flex-start; padding: 30px 20px; text-align: left; }
	.cta-strip__btn { width: 100%; text-align: center; }
	.cta-strip--center { align-items: center; }
	.cta-strip__buttons { flex-direction: column; }
	.cta-strip__left,
	.cta-strip__text { text-align: left; }
}

/* Plain text content sections */
.content h2 { margin-bottom: 35px; }
.content h3 { margin-top: 35px; margin-bottom: 14px; }
.content h3:first-child { margin-top: 0; }
.content p { font-size: 18px; }
.content p:not(:last-child) { margin-bottom: 20px; }

@media (max-width: 1023px) {
	.content p { font-size: 16px; }
}
.section--no-padding-top {padding-top: 0;}
.section--no-padding-bottom {padding-bottom: 0;}
/* Scroll reveal animation */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
.reveal {opacity: 1;transform: none;transition: none;}
html {scroll-behavior: auto;}
}

@media (max-width: 1199px) {
h1, .hero__title { font-size: 45px; }
h2, .section-title { font-size: 35px; }
h3 { font-size: 25px; }
h4 { font-size: 21px; }
h5 { font-size: 19px; }
h6 { font-size: 17px; }
.section { padding-top:60px; padding-bottom:60px; }
.section--no-padding {padding-top: 0;padding-bottom: 0;}
.section--no-padding-top {padding-top: 0;}
.section--no-padding-bottom {padding-bottom: 0;}
.u-restore-pt.section--no-padding-top { padding-top: 60px; }

}

@media (max-width: 767px) {
h1, .hero__title { font-size: 36px; }
h2, .section-title { font-size: 32px; }
h3 { font-size: 22px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }
}