/* =========================================================
   Revamp Reno — main.css
   Design tokens sourced directly from the brand brief.
   ========================================================= */

:root {
	--brand-primary: #ff5500;
	--brand-secondary: #ff7733;
	--brand-tertiary: #ff3300;
	--grey: #2f343b;
	--grey-dark: #1a1a1a;
	--black: #000000;
	--white: #ffffff;

	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Lato', sans-serif;

	--radius: 10px;
	--radius-lg: 20px;
	--container-width: 1200px;
	--header-height: 88px;

	--shadow-soft: 0 20px 50px -20px rgba(0, 0, 0, 0.35);
	--transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--grey-dark);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 0.5em;
	color: var(--grey-dark);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
	position: fixed; top: 1rem; left: 1rem; z-index: 9999;
	background: var(--white); color: var(--grey-dark); padding: 0.75rem 1.25rem;
	border-radius: var(--radius); clip: auto; width: auto; height: auto;
}

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--brand-primary);
	margin-bottom: 0.75em;
}

.section-heading { max-width: 720px; margin: 0 0 3rem; }
.section-heading p { color: var(--grey); font-size: 1.05rem; }

section { padding: 5rem 0; }
@media (max-width: 640px) { section { padding: 3.5rem 0; } }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.9em 1.75em;
	border-radius: 999px;
	transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
	white-space: nowrap;
}
.btn--primary {
	background: linear-gradient(135deg, var(--brand-primary), var(--brand-tertiary));
	color: var(--white);
	box-shadow: 0 10px 30px -10px rgba(255, 85, 0, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(255, 85, 0, 0.7); }
.btn--ghost {
	background: transparent;
	color: var(--white);
	border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }
.btn--large { padding: 1.1em 2.25em; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--header { padding: 0.7em 1.4em; font-size: 0.85rem; }
.btn:focus-visible { outline: 3px solid var(--brand-secondary); outline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(26, 26, 26, 0.92);
	backdrop-filter: blur(10px);
	height: var(--header-height);
	display: flex;
	align-items: center;
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
.site-logo img { height: 40px; width: auto; }

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}
.site-nav__list > li { position: relative; }
.site-nav__list a {
	color: var(--white);
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color var(--transition);
}
.site-nav__list a:hover { color: var(--brand-secondary); }
.site-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--grey-dark);
	border-radius: var(--radius);
	padding: 0.5rem;
	min-width: 220px;
	box-shadow: var(--shadow-soft);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all var(--transition);
}
.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.site-nav__list .sub-menu li a { display: block; padding: 0.6rem 0.9rem; border-radius: 6px; }
.site-nav__list .sub-menu li a:hover { background: rgba(255, 85, 0, 0.15); }

.site-header__actions { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle__bar { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

@media (max-width: 900px) {
	.site-nav {
		position: fixed;
		inset: var(--header-height) 0 0 0;
		background: var(--grey-dark);
		transform: translateX(100%);
		transition: transform var(--transition);
		overflow-y: auto;
		padding: 2rem 0;
	}
	.site-nav.is-open { transform: translateX(0); }
	.site-nav__list { flex-direction: column; align-items: flex-start; gap: 0; padding: 0 24px; width: 100%; }
	.site-nav__list > li { width: 100%; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
	.site-nav__list .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; padding-left: 1rem; display: none; }
	.menu-item-has-children.is-open .sub-menu { display: block; }
	.nav-toggle { display: flex; }
	.site-header__actions .btn--header { display: none; }
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	color: var(--white);
	overflow: hidden;
	background: var(--grey-dark);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(26,26,26,0.85) 100%);
}
.hero__inner { position: relative; z-index: 1; padding-top: 4rem; padding-bottom: 3rem; }
.hero__headline { color: var(--white); max-width: 850px; }
.hero__subheadline { max-width: 620px; font-size: 1.2rem; color: rgba(255,255,255,0.85); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.hero__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 3.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat-value {
	display: block;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero__stat-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }

.hero__scroll-cue {
	position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
	width: 28px; height: 44px; border: 2px solid rgba(255,255,255,0.5); border-radius: 20px;
	z-index: 1;
}
.hero__scroll-cue span {
	position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
	width: 4px; height: 8px; background: var(--white); border-radius: 2px;
	animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue {
	0% { opacity: 1; transform: translate(-50%, 0); }
	100% { opacity: 0; transform: translate(-50%, 14px); }
}
@media (max-width: 780px) {
	.hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Process ---------- */
.process__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.process__step {
	background: var(--white);
	border: 1px solid #eee;
	border-radius: var(--radius-lg);
	padding: 2rem;
	position: relative;
}
.process__number {
	display: inline-block;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 2.5rem;
	background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 0.5rem;
}
@media (max-width: 860px) { .process__steps { grid-template-columns: 1fr; } }

/* ---------- Pain points ---------- */
.pain-points { background: var(--grey-dark); color: var(--white); }
.pain-points .eyebrow { color: var(--brand-secondary); }
.pain-points h2 { color: var(--white); }
.pain-points__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem; }
.pain-points__list li {
	position: relative;
	padding-left: 2rem;
	color: rgba(255,255,255,0.85);
	font-size: 1.05rem;
}
.pain-points__list li::before {
	content: '';
	position: absolute; left: 0; top: 0.4em;
	width: 12px; height: 12px; border-radius: 50%;
	background: var(--brand-primary);
}
@media (max-width: 700px) { .pain-points__list { grid-template-columns: 1fr; } }

/* ---------- Trades grid ---------- */
.trades__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.trade-card {
	display: block;
	background: var(--white);
	border: 1px solid #eee;
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.trade-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--brand-secondary); }
.trade-card__icon {
	display: block;
	width: 48px; height: 48px;
	margin-bottom: 1.25rem;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
}
.trade-card__link { color: var(--brand-primary); font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; }
@media (max-width: 860px) { .trades__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trades__grid { grid-template-columns: 1fr; } }

/* ---------- Lead form / embed sections ---------- */
.lead-form-section { background: var(--grey-dark); color: var(--white); }
.lead-form-section .eyebrow { color: var(--brand-secondary); }
.lead-form-section h2 { color: var(--white); }
.lead-form-section p { color: rgba(255,255,255,0.75); }
.lead-form-section__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.embed-placeholder {
	background: rgba(255,255,255,0.06);
	border: 1.5px dashed rgba(255,255,255,0.25);
	border-radius: var(--radius-lg);
	padding: 3rem 2rem;
	text-align: center;
	color: rgba(255,255,255,0.6);
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.reviews-section .embed-placeholder,
.gallery-section .embed-placeholder {
	background: #f7f7f7;
	border-color: #ddd;
	color: var(--grey);
}
@media (max-width: 860px) { .lead-form-section__inner { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
.team-card { text-align: center; }
.team-card__photo {
	width: 140px; height: 140px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--brand-secondary);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: 0.2rem; }
.team-card__role { color: var(--grey); font-size: 0.9rem; margin: 0; }
@media (max-width: 860px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- FAQ ---------- */
.faq__list { max-width: 800px; }
.faq__item { border-bottom: 1px solid #e5e5e5; }
.faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem 0;
	text-align: left;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--grey-dark);
}
.faq__icon {
	position: relative;
	flex: none;
	width: 20px; height: 20px;
}
.faq__icon::before, .faq__icon::after {
	content: ''; position: absolute; background: var(--brand-primary);
	top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; transition: transform var(--transition); }
.faq__question[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--transition), opacity var(--transition);
	opacity: 0;
}
.faq__answer p { color: var(--grey); padding-bottom: 1.5rem; }
.faq__item.is-open .faq__answer { opacity: 1; }

/* ---------- Final CTA ---------- */
.final-cta {
	background: linear-gradient(135deg, var(--brand-tertiary), var(--brand-primary));
	color: var(--white);
	text-align: center;
}
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.final-cta .btn--primary { background: var(--grey-dark); box-shadow: none; margin-top: 1rem; }
.final-cta .btn--primary:hover { background: var(--black); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.7); }
.site-footer__top {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: space-between;
	align-items: center;
	padding: 4rem 24px 3rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__brand p { margin-top: 0.75rem; font-size: 0.85rem; }
.site-footer__list { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-footer__list a { font-size: 0.9rem; transition: color var(--transition); }
.site-footer__list a:hover { color: var(--brand-secondary); }
.site-footer__bottom {
	display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
	padding: 1.5rem 24px; font-size: 0.8rem;
}
.site-footer__legal { display: flex; gap: 1.5rem; }
.site-footer__legal a:hover { color: var(--brand-secondary); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
	padding: 0.75rem 1rem;
	background: rgba(26,26,26,0.95);
	backdrop-filter: blur(8px);
	transform: translateY(100%);
	transition: transform var(--transition);
	display: none;
}
.sticky-cta.is-visible { transform: translateY(0); }
@media (max-width: 700px) { .sticky-cta { display: block; } body { padding-bottom: 4.5rem; } }

/* ---------- Generic page ---------- */
.generic-page { padding: 6rem 0; }
.generic-page__content { max-width: 760px; }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 700ms ease, transform 700ms ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	[data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
	.hero__scroll-cue span { animation: none; }
	.btn--primary:hover { transform: none; }
}
