/* =========================================================
   GARAGE RESCUE — Main Stylesheet
   Brand: bold, clean, local, trustworthy, masculine, playful.
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
	--gr-red: #F20E17;
	--gr-red-dark: #C50B12;
	--gr-black: #050505;
	--gr-charcoal: #111111;
	--gr-dark-gray: #242424;
	--gr-white: #FFFFFF;
	--gr-off-white: #F7F7F7;
	--gr-light-gray: #E9E9E9;
	--gr-green: #39FF14;

	--gr-font-display: 'Anton', Impact, 'Arial Narrow Bold', sans-serif;
	--gr-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--gr-container: 1200px;
	--gr-radius: 4px;
	--gr-header-h: 88px;
	--gr-mobile-bar-h: 64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--gr-font-body);
	color: var(--gr-charcoal);
	background: var(--gr-white);
	line-height: 1.6;
	overflow-x: hidden;
	font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--gr-font-display); margin: 0; letter-spacing: 0.5px; line-height: 1.05; text-transform: uppercase; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}
.skip-link {
	position: absolute;
	top: -60px; left: 0;
	background: var(--gr-red);
	color: var(--gr-white);
	padding: 12px 20px;
	z-index: 10000;
	transition: top .2s;
}
.skip-link:focus { top: 0; position: fixed; }

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

.section { padding: 80px 0; }

.eyebrow {
	font-family: var(--gr-font-display);
	color: var(--gr-red);
	font-size: 15px;
	letter-spacing: 2px;
	margin-bottom: 12px;
	text-transform: uppercase;
}
.eyebrow-light { color: var(--gr-red); }
.eyebrow-green { color: var(--gr-green); }

.section-headline {
	font-size: clamp(32px, 5vw, 52px);
	margin-bottom: 28px;
}
.section-headline-light { color: var(--gr-white); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	font-family: var(--gr-font-display);
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 18px 34px;
	border-radius: var(--gr-radius);
	border: 2px solid transparent;
	transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
	text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
	background: var(--gr-red);
	color: var(--gr-white);
}
.btn-primary:hover { background: var(--gr-red-dark); color: var(--gr-white); }
.btn-large { padding: 22px 44px; font-size: 18px; }
.btn-outline {
	background: transparent;
	color: var(--gr-charcoal);
	border-color: var(--gr-charcoal);
}
.btn-outline:hover { background: var(--gr-charcoal); color: var(--gr-white); }
.btn-outline-light {
	background: transparent;
	color: var(--gr-white);
	border-color: var(--gr-white);
}
.btn-outline-light:hover { background: var(--gr-white); color: var(--gr-black); }

/* ---------- Checklists ---------- */
.checklist { margin: 20px 0; }
.checklist li { padding: 8px 0 8px 32px; position: relative; font-size: 17px; }
.checklist-x li::before {
	content: '\2715';
	position: absolute; left: 0; top: 8px;
	color: var(--gr-red);
	font-weight: 700;
}
.checklist-check li::before {
	content: '\2713';
	position: absolute; left: 0; top: 8px;
	color: var(--gr-red);
	font-weight: 700;
}
.checklist-large li { font-size: 19px; padding-left: 36px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: var(--gr-white);
	border-bottom: 3px solid var(--gr-black);
}
.header-inner {
	max-width: var(--gr-container);
	margin: 0 auto;
	padding: 0 24px;
	height: var(--gr-header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.site-branding { flex-shrink: 0; }
.site-logo-link { display: block; }
.site-logo-fallback, .custom-logo { max-height: 62px; width: auto; }

.main-navigation { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; gap: 32px; }
.nav-menu li a {
	font-family: var(--gr-font-display);
	font-size: 15px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--gr-charcoal);
	position: relative;
	padding: 6px 0;
}
.nav-menu li a::after {
	content: '';
	position: absolute; left: 0; bottom: -2px;
	width: 0; height: 3px;
	background: var(--gr-red);
	transition: width .2s ease;
}
.nav-menu li a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.header-cta-btn { padding: 13px 22px; font-size: 13px; }
.header-phone {
	font-family: var(--gr-font-display);
	font-size: 15px;
	white-space: nowrap;
}
.header-phone:hover { color: var(--gr-red); }

.menu-toggle {
	display: none;
	background: none; border: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
}
.menu-toggle-bar {
	width: 26px; height: 3px;
	background: var(--gr-black);
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-sticky-cta { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
	position: relative;
	background: var(--gr-black);
	color: var(--gr-white);
	padding: 100px 0 90px;
	overflow: hidden;
}
.hero-bg-accent {
	position: absolute;
	top: -20%; right: -10%;
	width: 60%; height: 140%;
	background: linear-gradient(135deg, var(--gr-red) 0%, transparent 55%);
	opacity: 0.18;
	transform: skewX(-12deg);
	pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero .eyebrow-light {
	color: var(--gr-white);
	background: var(--gr-red);
	display: inline-block;
	padding: 6px 14px;
	border-radius: var(--gr-radius);
	font-size: 13px;
}
.hero-headline {
	font-size: clamp(38px, 6.5vw, 68px);
	margin: 20px 0 12px;
	color: var(--gr-white);
}
.hero-subheadline {
	font-family: var(--gr-font-display);
	color: var(--gr-red);
	font-size: clamp(20px, 3vw, 28px);
	text-transform: uppercase;
	margin-bottom: 28px;
}
.hero-price-badge {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	border: 3px solid var(--gr-red);
	padding: 14px 34px;
	margin-bottom: 28px;
	position: relative;
}
.hero-price-badge::before {
	content: '';
	position: absolute; top: 8px; left: 8px; right: -8px; bottom: -8px;
	border: 1px solid rgba(255,255,255,0.15);
	z-index: -1;
}
.hero-price-label { font-size: 13px; letter-spacing: 2px; color: var(--gr-white); }
.hero-price-amount {
	font-family: var(--gr-font-display);
	font-size: clamp(56px, 8vw, 92px);
	color: var(--gr-red);
	line-height: 1;
}
.hero-price-sub { font-size: 13px; letter-spacing: 2px; color: var(--gr-white); }
.hero-copy { font-size: 18px; color: var(--gr-light-gray); max-width: 640px; }
.hero-copy-emphasis { color: var(--gr-white); font-weight: 700; }
.hero-actions { margin-top: 32px; }
.hero-support-text { margin-top: 14px; color: var(--gr-light-gray); font-size: 14px; }

/* =========================================================
   VALUE STRIP
   ========================================================= */
.value-strip { background: var(--gr-charcoal); color: var(--gr-white); padding: 56px 0; }
.value-strip-grid {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}
.value-strip-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.value-strip-icon { width: 48px; height: 48px; color: var(--gr-red); }
.value-strip-icon svg { width: 100%; height: 100%; }
.value-strip-label { font-family: var(--gr-font-display); font-size: 20px; letter-spacing: 1px; }
.value-strip-divider { width: 2px; height: 40px; background: rgba(255,255,255,0.2); }
.value-strip-callout {
	text-align: center;
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,0.15);
}
.value-strip-callout p { font-size: 20px; }
.value-strip-callout strong { color: var(--gr-red); font-family: var(--gr-font-display); }

/* =========================================================
   ONE PRICE
   ========================================================= */
.one-price { background: var(--gr-off-white); }
.one-price-grid { max-width: 780px; }
.one-price-amount {
	font-family: var(--gr-font-display);
	font-size: clamp(72px, 10vw, 120px);
	color: var(--gr-red);
	line-height: 1;
	margin-bottom: 12px;
}
.one-price-star { font-size: 0.4em; vertical-align: top; }
.one-price-lead { font-size: 20px; font-weight: 700; }
.one-price-strong {
	font-family: var(--gr-font-display);
	font-size: 22px;
	color: var(--gr-red);
	margin-top: 24px;
}
.one-price-humor {
	background: var(--gr-white);
	border-left: 4px solid var(--gr-red);
	padding: 16px 20px;
	font-style: italic;
	margin: 20px 0;
}
.one-price-closing { font-weight: 700; margin-bottom: 28px; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-it-works { background: var(--gr-white); }
.how-it-works .container { max-width: 900px; }
.steps-list { counter-reset: none; margin-top: 40px; }
.step-item {
	display: flex;
	gap: 24px;
	padding: 28px 0;
	border-bottom: 1px solid var(--gr-light-gray);
}
.step-item:last-child { border-bottom: none; }
.step-number {
	flex-shrink: 0;
	width: 56px; height: 56px;
	background: var(--gr-black);
	color: var(--gr-red);
	font-family: var(--gr-font-display);
	font-size: 26px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
}
.step-content h3 { font-size: 22px; margin-bottom: 8px; }
.step-content p { color: #444; }

/* =========================================================
   GREEN MEANS KEEP
   ========================================================= */
.green-means-keep {
	background: var(--gr-black);
	color: var(--gr-white);
}
.green-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 56px;
	align-items: center;
}
.green-headline { color: var(--gr-white); }
.green-headline br + br { display: none; }
.green-rule-box {
	background: var(--gr-dark-gray);
	border: 2px dashed var(--gr-green);
	padding: 22px 26px;
	margin: 24px 0;
	font-family: var(--gr-font-display);
	font-size: 22px;
}
.green-rule-box p { margin: 4px 0; }
.green-tape {
	background: var(--gr-green);
	color: var(--gr-black);
	padding: 2px 10px;
}
.green-examples li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	color: var(--gr-light-gray);
}
.green-examples-final {
	font-family: var(--gr-font-display);
	color: var(--gr-green);
	font-size: 20px;
	border-bottom: none !important;
}
.green-visual { display: flex; justify-content: center; }
.green-visual svg { width: 100%; max-width: 320px; height: auto; }

/* =========================================================
   PRICE DETAIL ($699 dark section)
   ========================================================= */
.price-detail {
	background: var(--gr-charcoal);
	color: var(--gr-white);
	text-align: center;
}
.price-detail-amount {
	font-family: var(--gr-font-display);
	color: var(--gr-red);
	font-size: clamp(80px, 12vw, 140px);
	line-height: 1;
}
.price-detail .checklist { text-align: left; max-width: 480px; margin: 28px auto; }
.price-detail .checklist li { color: var(--gr-light-gray); }
.price-detail-qualify {
	font-family: var(--gr-font-display);
	font-size: 22px;
	color: var(--gr-white);
	margin: 28px 0;
}
.price-detail-humor {
	background: var(--gr-dark-gray);
	border-radius: var(--gr-radius);
	padding: 28px;
	max-width: 620px;
	margin: 0 auto 36px;
}
.price-detail-humor h3 { font-size: 24px; color: var(--gr-red); margin-bottom: 12px; }
.price-detail-humor p { color: var(--gr-light-gray); }

/* =========================================================
   BEFORE & AFTER
   ========================================================= */
.before-after { background: var(--gr-off-white); }
.before-after-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	margin-top: 40px;
}
.project-card {
	background: var(--gr-white);
	border-radius: var(--gr-radius);
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(0,0,0,0.08);
}
.project-slider { position: relative; }
.project-slider-after {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.project-slider-before {
	position: absolute; top: 0; left: 0; height: 100%;
	width: 50%;
	background-size: cover;
	background-position: center;
	border-right: 3px solid var(--gr-white);
}
.project-slider-input {
	position: absolute; top: 0; left: 0;
	width: 100%; height: 100%;
	margin: 0;
	appearance: none;
	background: transparent;
	cursor: ew-resize;
}
.project-slider-input::-webkit-slider-thumb {
	appearance: none;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--gr-red);
	border: 3px solid var(--gr-white);
	box-shadow: 0 0 0 2px var(--gr-black);
	cursor: ew-resize;
	margin-top: 0;
}
.project-slider-input::-moz-range-thumb {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--gr-red);
	border: 3px solid var(--gr-white);
	cursor: ew-resize;
}
.project-slider-input::-webkit-slider-runnable-track { background: transparent; }
.project-slider-label {
	position: absolute; top: 12px;
	font-family: var(--gr-font-display);
	font-size: 12px;
	background: var(--gr-black);
	color: var(--gr-white);
	padding: 4px 10px;
	letter-spacing: 1px;
	pointer-events: none;
}
.project-slider-label-before { left: 12px; }
.project-slider-label-after { right: 12px; }
.project-single-image { width: 100%; aspect-ratio: 4/3; background-size: cover; background-position: center; }
.project-card-body { padding: 22px; }
.project-title { font-size: 19px; margin-bottom: 8px; }
.project-city { color: var(--gr-red); font-family: var(--gr-font-body); font-weight: 600; text-transform: none; font-size: 15px; }
.project-description { color: #444; font-size: 15px; }
.project-meta { display: flex; gap: 16px; margin: 12px 0; flex-wrap: wrap; }
.project-meta-item { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gr-dark-gray); }
.project-meta-resale { color: var(--gr-red); }
.project-testimonial { font-style: italic; color: #555; border-left: 3px solid var(--gr-red); padding-left: 12px; margin: 12px 0 0; }

/* =========================================================
   CONSIGNMENT CONCIERGE
   ========================================================= */
.consignment { background: var(--gr-white); }
.consignment-grid { max-width: 760px; }
.consignment-subheadline {
	font-family: var(--gr-font-display);
	font-size: 24px;
	color: var(--gr-red);
	margin-bottom: 20px;
}
.consignment-payout { font-size: 19px; font-weight: 700; margin: 20px 0; }
.consignment-tagline {
	background: var(--gr-black);
	color: var(--gr-white);
	padding: 24px 28px;
	margin: 24px 0;
	font-family: var(--gr-font-display);
	font-size: 22px;
}
.consignment-tagline p { margin: 2px 0; }

/* =========================================================
   DIY HUMOR
   ========================================================= */
.diy-humor { background: var(--gr-off-white); text-align: center; }
.diy-humor .container { max-width: 640px; }
.diy-list p { font-size: 18px; color: #333; margin: 6px 0; }
.diy-or { font-family: var(--gr-font-display); font-size: 26px; color: var(--gr-red); margin: 24px 0 8px; }
.diy-solution { font-family: var(--gr-font-display); font-size: 26px; margin-bottom: 28px; }

/* =========================================================
   WHAT WE DON'T TAKE
   ========================================================= */
.no-take { background: var(--gr-charcoal); color: var(--gr-white); text-align: center; }
.no-take-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: 28px 0;
}
.no-take-list li {
	background: var(--gr-dark-gray);
	border: 1px solid rgba(255,255,255,0.15);
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
}
.no-take-note { color: var(--gr-light-gray); font-size: 15px; }

/* =========================================================
   RESCUE DAY CHECKLIST
   ========================================================= */
.checklist-section { background: var(--gr-off-white); text-align: center; }
.checklist-section .checklist { display: inline-block; text-align: left; margin: 28px auto; }
.checklist-closing {
	font-family: var(--gr-font-display);
	font-size: 22px;
	margin-top: 24px;
	color: var(--gr-red);
}

/* =========================================================
   STORAGE UNIT
   ========================================================= */
.storage-unit {
	background: linear-gradient(120deg, var(--gr-black) 0%, var(--gr-dark-gray) 100%);
	color: var(--gr-white);
	text-align: center;
}
.storage-unit .container { max-width: 640px; }
.storage-sub { font-family: var(--gr-font-display); color: var(--gr-red); font-size: 20px; margin-bottom: 16px; }
.storage-closing { font-family: var(--gr-font-display); font-size: 22px; margin: 24px 0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section { background: var(--gr-white); }
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
	margin-top: 36px;
}
.testimonial-card {
	background: var(--gr-off-white);
	border-radius: var(--gr-radius);
	padding: 26px;
	border-top: 4px solid var(--gr-red);
}
.gr-stars { color: var(--gr-red); font-size: 18px; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-quote { font-style: italic; color: #333; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: 14px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: var(--gr-off-white); }
.faq-section .container { max-width: 800px; }
.faq-list { margin-top: 32px; }
.faq-item { border-bottom: 1px solid var(--gr-light-gray); }
.faq-question {
	width: 100%;
	background: none; border: none;
	display: flex; align-items: center; justify-content: space-between;
	padding: 20px 4px;
	text-align: left;
	font-family: var(--gr-font-display);
	font-size: 17px;
	color: var(--gr-charcoal);
}
.faq-toggle-icon { font-size: 24px; color: var(--gr-red); flex-shrink: 0; margin-left: 16px; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] .faq-toggle-icon { transform: rotate(45deg); }
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease;
}
.faq-answer p { padding: 0 4px 20px; color: #444; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
	background: var(--gr-black);
	color: var(--gr-white);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.final-cta::before {
	content: '';
	position: absolute; bottom: -30%; left: -10%;
	width: 60%; height: 140%;
	background: linear-gradient(135deg, var(--gr-red) 0%, transparent 55%);
	opacity: 0.15;
	transform: skewX(-12deg);
}
.final-cta .container { position: relative; z-index: 1; max-width: 700px; }
.final-cta-headline { color: var(--gr-white); font-size: clamp(30px, 5vw, 46px); margin-bottom: 24px; }
.final-cta-job { font-weight: 700; margin-top: 20px; }
.final-cta-greentape {
	font-family: var(--gr-font-display);
	font-size: 24px;
	color: var(--gr-red);
	margin: 16px 0 28px;
}
.final-cta-price {
	font-family: var(--gr-font-display);
	font-size: clamp(60px, 9vw, 100px);
	color: var(--gr-red);
	line-height: 1;
}
.final-cta-support { color: var(--gr-light-gray); margin-bottom: 32px; }
.final-cta-call { margin-top: 18px; font-family: var(--gr-font-display); font-size: 15px; letter-spacing: 1px; }
.final-cta-call a:hover { color: var(--gr-red); }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-section { background: var(--gr-dark-gray); color: var(--gr-white); }
.contact-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 56px;
	align-items: start;
}
.contact-intro p { color: var(--gr-light-gray); }
.contact-call { margin-top: 24px; font-family: var(--gr-font-display); font-size: 16px; }
.contact-call-link { color: var(--gr-red); }

.contact-form {
	background: var(--gr-white);
	color: var(--gr-charcoal);
	padding: 36px;
	border-radius: var(--gr-radius);
}
.form-row { margin-bottom: 18px; }
.form-row-group { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
	width: 100%;
	padding: 13px 14px;
	border: 2px solid var(--gr-light-gray);
	border-radius: var(--gr-radius);
	font-family: var(--gr-font-body);
	font-size: 16px;
	background: var(--gr-off-white);
	transition: border-color .15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
	outline: none;
	border-color: var(--gr-red);
}
.form-row input[type="file"] { font-size: 14px; }
.form-submit-btn { width: 100%; margin-top: 8px; border: none; }
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-message { margin-top: 16px; font-weight: 600; }
.form-message.is-success { color: #1a7d1a; }
.form-message.is-error { color: var(--gr-red); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--gr-black); color: var(--gr-light-gray); padding: 64px 0 0; }
.footer-inner {
	max-width: var(--gr-container);
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 48px;
}
.footer-logo { max-height: 50px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-owner { font-weight: 700; color: var(--gr-white); margin-bottom: 6px; }
.footer-contact a:hover { color: var(--gr-red); }
.footer-area { margin-top: 10px; font-size: 14px; }
.footer-links h3, .footer-widget-title { font-family: var(--gr-font-display); font-size: 16px; color: var(--gr-white); margin-bottom: 16px; letter-spacing: 1px; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a:hover { color: var(--gr-red); }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 24px;
	text-align: center;
	font-size: 12px;
	color: #888;
}
.footer-legal { max-width: 900px; margin: 0 auto 10px; line-height: 1.6; }

/* =========================================================
   GENERIC PAGES (blog, single, page, 404)
   ========================================================= */
.generic-content { padding: 80px 0; max-width: 800px; }
.page-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 24px; }
.page-body { font-size: 17px; color: #333; }
.page-body p { margin-bottom: 1.2em; }
.post-list-item { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--gr-light-gray); }
.post-list-thumb { display: block; margin-bottom: 16px; border-radius: var(--gr-radius); overflow: hidden; }
.post-list-title { font-size: 24px; margin-bottom: 10px; }
.post-list-title a:hover { color: var(--gr-red); }
.post-list-readmore { color: var(--gr-red); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }
.single-post-meta { color: #888; font-size: 14px; margin-bottom: 24px; }
.single-post-thumb { margin-bottom: 28px; border-radius: var(--gr-radius); overflow: hidden; }
.single-project-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.single-project-images figcaption { font-family: var(--gr-font-display); font-size: 13px; color: var(--gr-red); margin-bottom: 8px; }
.single-project-meta { margin: 20px 0; }
.single-project-meta li { font-weight: 700; padding: 4px 0; }
.error-404-content { text-align: center; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
	.green-grid { grid-template-columns: 1fr; }
	.green-visual { order: -1; max-width: 220px; margin: 0 auto 24px; }
	.contact-grid { grid-template-columns: 1fr; }
	.footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 782px) {
	:root { --gr-header-h: 72px; }
	body { font-size: 16px; }
	.section { padding: 56px 0; }

	.main-navigation {
		position: fixed;
		top: var(--gr-header-h);
		left: 0; right: 0;
		background: var(--gr-white);
		border-bottom: 3px solid var(--gr-black);
		max-height: 0;
		overflow: hidden;
		transition: max-height .25s ease;
		z-index: 400;
	}
	.main-navigation.is-open { max-height: 70vh; overflow-y: auto; }
	.nav-menu { flex-direction: column; gap: 0; padding: 12px 24px 20px; }
	.nav-menu li a { display: block; padding: 14px 0; border-bottom: 1px solid var(--gr-light-gray); }

	.header-cta { display: none; }
	.menu-toggle { display: flex; }

	.mobile-sticky-cta {
		display: flex;
		position: fixed;
		bottom: 0; left: 0; right: 0;
		height: var(--gr-mobile-bar-h);
		background: var(--gr-black);
		z-index: 450;
		align-items: stretch;
		border-top: 3px solid var(--gr-red);
	}
	.mobile-sticky-cta-btn {
		flex: 1;
		border-radius: 0;
		display: flex; align-items: center; justify-content: center;
		font-size: 14px;
		padding: 0 12px;
	}
	.mobile-sticky-call-btn {
		width: 64px;
		display: flex; align-items: center; justify-content: center;
		background: var(--gr-dark-gray);
		color: var(--gr-white);
		font-size: 13px;
	}
	body.is-homepage { padding-bottom: var(--gr-mobile-bar-h); }

	.hero { padding: 56px 0 64px; }
	.hero-price-badge { padding: 12px 24px; }
	.form-row-group { grid-template-columns: 1fr; }
	.single-project-images { grid-template-columns: 1fr; }
	.steps-list .step-item { gap: 16px; }
	.value-strip-grid { gap: 24px; }
}

@media (max-width: 480px) {
	.hero-price-amount { font-size: 56px; }
	.one-price-amount { font-size: 72px; }
	.price-detail-amount { font-size: 76px; }
	.final-cta-price { font-size: 60px; }
}
