/* ============================================================
   PROCOAT — Page-specific styles
   Linked on every page after layout.css
   ============================================================ */

/* ── GLOBAL BASE ── */
:root {
  --red: #C0392B;
  --red-light: #E74C3C;
  --red-dark: #96281B;
  --navy: #1A2332;
  --navy-mid: #243447;
  --navy-light: #2E4057;
  --gold: #D4A843;
  --gold-f: #F39C12;         /* used on location/sale pages */
  --gold-light: #F5C842;
  --white: #FFFFFF;
  --off-white: #F7F6F3;
  --off-white-f: #F5F4F0;    /* used on location pages */
  --light-gray: #EFEFEF;
  --gray-light: #ECECEC;
  --gray: #888;
  --gray-mid: #8A8A8A;
  --text: #1A2332;
  --text-light: #555;
  --green: #27AE60;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── SHARED COMPONENTS ── */

/* Page hero (about, services, projects, reviews) */
.page-hero { background: var(--navy); padding: 160px 5% 80px; position: relative; overflow: hidden; margin-top: 0; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #0D1520 0%, #1A2332 60%, #243447 100%); }
.page-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0.12; }
.page-hero-stripe { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--red); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb { font-family: var(--font-head); font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.page-eyebrow { display: inline-block; font-family: var(--font-head); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; border-left: 3px solid var(--gold); padding-left: 12px; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(40px, 6vw, 72px); font-weight: 700; color: white; line-height: 1.0; text-transform: uppercase; margin-bottom: 16px; }
.page-hero h1 span { color: var(--red-light); }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 560px; }

/* Shared section primitives */
.section { padding: 90px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { font-family: var(--font-head); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--red); }
h2.st { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; color: var(--navy); text-transform: uppercase; line-height: 1.05; margin-bottom: 14px; }
h2.st span { color: var(--red); }
h2.section-title { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; color: var(--navy); text-transform: uppercase; line-height: 1.05; margin-bottom: 14px; }
h2.section-title span { color: var(--red); }
.sub { font-size: 16px; color: var(--text-light); line-height: 1.75; max-width: 600px; }
.section-sub { font-size: 16px; color: var(--text-light); line-height: 1.75; max-width: 580px; }
.divider { width: 48px; height: 3px; background: var(--red); margin: 18px 0; }

/* Shared button styles */
.btn-red { background: var(--red); color: white; padding: 15px 34px; font-family: var(--font-head); font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; border-radius: 2px; }
.btn-red:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.4); }
.btn-ghost { background: transparent; color: white; padding: 15px 34px; font-family: var(--font-head); font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: 1.5px solid rgba(255,255,255,0.35); cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; border-radius: 2px; }
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.07); }
.btn-white { background: white; color: var(--red); padding: 15px 36px; font-family: var(--font-head); font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; border-radius: 2px; }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-ghost-w { background: transparent; color: white; padding: 15px 34px; font-family: var(--font-head); font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: 1.5px solid rgba(255,255,255,0.35); cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; border-radius: 2px; }
.btn-ghost-w:hover { border-color: white; }

/* Shared CTA band */
.cta-band { background: var(--red); padding: 70px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(0,0,0,0.025) 0, rgba(0,0,0,0.025) 1px, transparent 0, transparent 50%); background-size: 18px 18px; }
.cta-band-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 52px); color: white; text-transform: uppercase; font-weight: 700; line-height: 1.0; margin-bottom: 14px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-phone { font-family: var(--font-head); font-size: 26px; color: var(--navy); font-weight: 700; margin-top: 20px; display: block; text-decoration: none; }

/* Shared brands section */
.brands { background-color: white; padding: 60px 5%; border-top: 1px solid var(--light-gray); }
.brands-inner { max-width: 1100px; margin: 0 auto; }
.brands-label { font-family: var(--font-head); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); text-align: center; margin-bottom: 32px; }
.brands-logos { display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap; }
.brand-logo { opacity: 1; transition: opacity 0.2s; }
.brand-logo:hover { opacity: 1; transform: scale(1.05); }
.brand-logo img { height: 100px; width: auto; display: block; object-fit: contain; max-width: 180px; }
.brand-logo.dark { background: #111; padding: 8px 16px; border-radius: 5px; }
/* Alias used on index */
.brand-logo-item { opacity: 1; transition: opacity 0.2s; }
.brand-logo-item:hover { transform: scale(1.05); }
.brand-logo-item img { height: 100px; width: auto; display: block; object-fit: contain; max-width: 180px; }
.brand-logo-item.dark-bg { background: #111; padding: 12px 20px; border-radius: 5px; }

/* ── INDEX PAGE ── */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; overflow: hidden; margin-top: 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, rgba(26,35,50,0.9) 0%, rgba(26,35,50,0.72) 50%, rgba(26,35,50,0.35) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-eyebrow { display: inline-block; font-family: var(--font-head); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; border-left: 3px solid var(--gold); padding-left: 12px; }
.hero h1 { font-family: var(--font-head); font-size: clamp(44px, 6vw, 76px); font-weight: 700; color: white; line-height: 1.0; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 em { color: var(--red-light); font-style: normal; }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 36px; font-weight: 300; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; }
.hero-trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-trust-text { font-size: 13px; color: rgba(255,255,255,0.6); font-family: var(--font-head); letter-spacing: 0.5px; text-transform: uppercase; }
.hero-form { background: white; border-radius: 4px; box-shadow: 0 24px 64px rgba(0,0,0,0.35); overflow: hidden; }
.hero-form-head { background: var(--navy); padding: 22px 26px; border-bottom: 3px solid var(--red); }
.hero-form-head h3 { font-family: var(--font-head); font-size: 20px; color: white; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-form-head p { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 3px; }
.hero-form-body { padding: 24px 26px; }
.fg { margin-bottom: 13px; }
.fg label { display: block; font-size: 11px; font-weight: 600; color: var(--navy); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 11px 13px; border: 1.5px solid #E0E0E0; border-radius: 3px; font-family: var(--font-body); font-size: 14px; color: var(--text); background: #FAFAFA; transition: border-color 0.2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--red); background: white; }
.fg textarea { height: 80px; resize: none; }
.form-btn { width: 100%; padding: 14px; background: var(--red); color: white; border: none; font-family: var(--font-head); font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; border-radius: 3px; transition: all 0.25s; }
.form-btn:hover { background: var(--red-light); }
.form-note { text-align: center; font-size: 12px; color: var(--gray); margin-top: 10px; }
.stats-bar { background: var(--navy); padding: 0 5%; display: flex; align-items: stretch; }
.stats-bar-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 5px; text-transform: uppercase; letter-spacing: 1px; }
.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-img-grid img { width: 100%; height: 210px; object-fit: cover; border-radius: 3px; display: block; transition: transform 0.3s; }
.about-img-grid img:hover { transform: scale(1.02); }
.about-img-main { grid-row: span 2; height: 100% !important; min-height: 430px; }
.about-points { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point-line { width: 2px; background: var(--red); flex-shrink: 0; margin-top: 4px; height: 42px; }
.about-point-text strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--navy); font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; }
.about-point-text span { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.services { background: white; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--light-gray); margin-top: 48px; border: 1px solid var(--light-gray); }
.service-card { background: white; padding: 34px 28px; transition: all 0.25s; cursor: default; position: relative; }
.service-card:hover { background: var(--off-white); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.25s; }
.service-card:hover::after { transform: scaleX(1); }
.service-num { font-family: var(--font-head); font-size: 11px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.service-icon { font-size: 26px; margin-bottom: 12px; display: block; }
.service-name { font-family: var(--font-head); font-size: 17px; color: var(--navy); font-weight: 600; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 0.3px; }
.service-desc { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.service-tag { display: inline-block; margin-top: 12px; font-size: 11px; color: var(--red); font-family: var(--font-head); letter-spacing: 1px; text-transform: uppercase; }
.projects { background: var(--off-white); }
.projects-tabs { display: flex; gap: 0; margin-top: 40px; border-bottom: 2px solid var(--light-gray); }
.tab-btn { font-family: var(--font-head); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); background: none; border: none; padding: 12px 28px; cursor: pointer; transition: all 0.2s; border-bottom: 2px solid transparent; margin-bottom: -2px; }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--red); }
.tab-btn:hover { color: var(--navy); }
.tab-content { display: none; margin-top: 24px; }
.tab-content.active { display: block; }
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.ba-img:hover img { transform: scale(1.04); }
.ba-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(26,35,50,0.85), transparent); padding: 20px 14px 10px; font-family: var(--font-head); font-size: 13px; color: white; text-transform: uppercase; letter-spacing: 1px; }
.ba-label.after { color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.g-img { aspect-ratio: 4/3; overflow: hidden; }
.g-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.g-img:hover img { transform: scale(1.05); }
.g-img.wide { grid-column: span 2; }
.videos { background: var(--navy); padding: 90px 5%; }
.videos-inner { max-width: 1200px; margin: 0 auto; }
.videos .section-tag { color: var(--gold); }
.videos .section-tag::before { background: var(--gold); }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.video-wrap { border-radius: 3px; overflow: hidden; background: var(--navy-mid); }
.video-wrap-ratio { position: relative; width: 100%; padding-top: 56.25%; cursor: pointer; }
.video-wrap-ratio video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.video-caption { padding: 16px 20px; }
.video-caption h4 { font-family: var(--font-head); font-size: 16px; color: white; text-transform: uppercase; letter-spacing: 0.5px; }
.video-caption p { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.video-play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(26,35,50,0.3); transition: background 0.2s; }
.video-play-overlay:hover { background: rgba(26,35,50,0.15); }
.video-play-btn { width: 64px; height: 64px; background: rgba(192,57,43,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.video-play-overlay:hover .video-play-btn { transform: scale(1.1); }
.video-play-btn::after { content: ''; border-left: 22px solid white; border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 5px; }
.video-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.video-lightbox.open { display: flex; }
.video-lightbox-inner { position: relative; width: 100%; max-width: 960px; }
.video-lightbox-inner video { width: 100%; border-radius: 4px; display: block; }
.video-lightbox-close { position: absolute; top: -44px; right: 0; font-size: 28px; color: white; cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; }
.video-lightbox-close:hover { background: var(--red); }
.why { background: white; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 50px; }
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item { display: flex; align-items: flex-start; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--light-gray); }
.why-item:last-child { border-bottom: none; }
.why-item-num { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--light-gray); line-height: 1; min-width: 36px; margin-top: 2px; }
.why-item h4 { font-family: var(--font-head); font-size: 17px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 5px; }
.why-item p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.why-cta-box { background: var(--navy); padding: 44px 38px; border-radius: 4px; position: relative; overflow: hidden; }
.why-cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.why-cta-box h3 { font-family: var(--font-head); font-size: 28px; color: white; text-transform: uppercase; line-height: 1.1; margin-bottom: 14px; }
.why-cta-box h3 span { color: var(--gold); }
.why-cta-box p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.why-phone-row { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.why-phone-icon { width: 42px; height: 42px; background: rgba(192,57,43,0.2); border: 1px solid rgba(192,57,43,0.3); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.why-phone-num { font-family: var(--font-head); font-size: 24px; color: var(--gold); }
.why-phone-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.reviews { background: var(--off-white); }
.reviews-top { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.reviews-rating { display: flex; align-items: center; gap: 14px; }
.reviews-score { font-family: var(--font-head); font-size: 52px; font-weight: 700; color: var(--navy); line-height: 1; }
.reviews-stars { color: var(--gold); font-size: 22px; line-height: 1; }
.reviews-count { font-size: 14px; color: var(--text-light); margin-top: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.review-card { background: white; padding: 28px 26px; border-radius: 3px; border-top: 2px solid var(--red); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.review-stars-sm { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--text-light); line-height: 1.72; font-style: italic; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-av { width: 38px; height: 38px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); color: white; font-size: 15px; font-weight: 700; }
.review-name { font-family: var(--font-head); font-size: 14px; color: var(--navy); font-weight: 600; }
.review-loc { font-size: 12px; color: var(--gray); }
.area { background: var(--navy); padding: 80px 5%; }
.area-inner { max-width: 1200px; margin: 0 auto; }
.area .section-tag { color: var(--gold); }
.area .section-tag::before { background: var(--gold); }
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 36px; }
.area-city { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 18px 20px; border-radius: 2px; transition: all 0.2s; text-decoration: none; display: block; }
.area-city:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.area-city:hover .area-city-name, .area-city:hover .area-county { color: white; }
.area-city-name { font-family: var(--font-head); font-size: 16px; color: white; font-weight: 600; }
.area-county { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* ── ABOUT PAGE ── */
.story { background: white; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.story-imgs img { width: 100%; object-fit: cover; border-radius: 3px; display: block; }
.story-imgs .img-main { grid-column: span 2; height: 300px; }
.story-imgs .img-sm { height: 200px; }
.story-text p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 18px; }
.team { background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.team-card { background: white; border-radius: 3px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.team-img { height: 320px; overflow: hidden; position: relative; }
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-img-placeholder { width: 100%; height: 100%; background: var(--navy-mid); display: flex; align-items: center; justify-content: center; }
.team-avatar { width: 120px; height: 120px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 48px; font-weight: 700; color: white; }
.team-info { padding: 28px 28px 32px; }
.team-name { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--navy); text-transform: uppercase; margin-bottom: 4px; }
.team-role { font-family: var(--font-head); font-size: 13px; color: var(--red); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.team-divider { width: 36px; height: 2px; background: var(--red); margin-bottom: 14px; }
.team-bio { font-size: 15px; color: var(--text-light); line-height: 1.75; }
.values { background: var(--navy); padding: 90px 5%; }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; background: rgba(255,255,255,0.04); }
.value-card { background: var(--navy-mid); padding: 36px 30px; border-bottom: 3px solid transparent; transition: all 0.25s; }
.value-card:hover { background: var(--navy); border-bottom-color: var(--gold); }
.value-num { font-family: var(--font-head); font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px; }
.value-icon { font-size: 32px; margin-bottom: 14px; }
.value-name { font-family: var(--font-head); font-size: 20px; color: white; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.stats { background: white; padding: 70px 5%; }
.stats-inner { max-width: 1200px; margin: 0 auto; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--light-gray); }
.stat-box { padding: 40px 24px; text-align: center; border-right: 1px solid var(--light-gray); }
.stat-box:last-child { border-right: none; }
.stat-n { font-family: var(--font-head); font-size: 52px; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-n span { color: var(--red); }
.stat-l { font-size: 14px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }

/* ── SERVICES PAGE ── */
.service-block { padding: 80px 5%; border-bottom: 1px solid var(--light-gray); }
.service-block:nth-child(even) { background: var(--off-white); }
.service-block:nth-child(odd) { background: white; }
.service-block-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.service-block:nth-child(even) .service-block-inner { direction: rtl; }
.service-block:nth-child(even) .service-block-inner > * { direction: ltr; }
.service-img { border-radius: 3px; overflow: hidden; height: 360px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.service-img:hover img { transform: scale(1.03); }
.service-num-big { font-family: var(--font-head); font-size: 72px; font-weight: 700; color: var(--light-gray); line-height: 1; margin-bottom: -8px; }
.service-name-big { font-family: var(--font-head); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--navy); text-transform: uppercase; line-height: 1.05; margin-bottom: 14px; }
.service-desc-full { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 22px; }
.service-bullets { list-style: none; margin-bottom: 28px; }
.service-bullets li { font-size: 15px; color: var(--text-light); padding: 6px 0; border-bottom: 1px solid var(--light-gray); display: flex; align-items: center; gap: 10px; }
.service-bullets li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.why-strip { background: var(--navy); padding: 70px 5%; }
.why-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.07); }
.why-strip-inner .why-item { padding: 36px 28px; border-right: 1px solid rgba(255,255,255,0.07); border-bottom: none; }
.why-strip-inner .why-item:last-child { border-right: none; }
.why-title { font-family: var(--font-head); font-size: 17px; color: white; text-transform: uppercase; margin-bottom: 8px; }
.why-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── CONTACT PAGE ── */
.page-breadcrumb { font-family: var(--font-head); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.page-breadcrumb a { color: var(--red-light); text-decoration: none; }
.contact-main { background: var(--off-white); padding: 80px 5%; }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 480px; gap: 60px; align-items: start; }
.contact-info h2 { font-family: var(--font-head); font-size: 32px; color: var(--navy); text-transform: uppercase; line-height: 1.1; margin-bottom: 14px; }
.contact-info h2 span { color: var(--red); }
.contact-divider { width: 44px; height: 3px; background: var(--red); margin: 16px 0 22px; }
.contact-info p { font-size: 16px; color: var(--text-light); line-height: 1.75; margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-method { display: flex; align-items: center; gap: 16px; background: white; padding: 18px 20px; border-radius: 3px; border-left: 3px solid var(--red); box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.contact-method-icon { width: 42px; height: 42px; background: rgba(192,57,43,.08); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-method-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); font-family: var(--font-head); font-weight: 600; }
.contact-method-value { font-family: var(--font-head); font-size: 18px; color: var(--navy); font-weight: 600; }
.contact-method-value a { color: var(--navy); text-decoration: none; }
.contact-method-value a:hover { color: var(--red); }
.contact-hours { background: var(--navy); padding: 24px 22px; border-radius: 3px; }
.contact-hours h4 { font-family: var(--font-head); font-size: 15px; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; }
.hours-day { font-size: 14px; color: rgba(255,255,255,.6); }
.hours-time { font-family: var(--font-head); font-size: 14px; color: white; }
.hours-time.closed { color: rgba(255,255,255,.35); }
.hours-open-badge { background: var(--green); color: white; font-family: var(--font-head); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; margin-top: 14px; display: inline-block; }
.contact-form-card { background: white; border-radius: 4px; box-shadow: 0 8px 32px rgba(0,0,0,.1); overflow: hidden; }
.contact-form-head { background: var(--navy); padding: 26px 30px; border-bottom: 3px solid var(--red); }
.contact-form-head h3 { font-family: var(--font-head); font-size: 22px; color: white; text-transform: uppercase; letter-spacing: .5px; }
.contact-form-head p { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; }
.contact-form-body { padding: 28px 30px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 14px; }
.form-badge { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.why-strip-item { text-align: center; padding: 24px 16px; }
.why-strip-icon { font-size: 32px; margin-bottom: 10px; }
.why-strip-label { font-family: var(--font-head); font-size: 16px; color: var(--navy); text-transform: uppercase; margin-bottom: 6px; }
.why-strip-sub { font-size: 14px; color: var(--text-light); }
.map-section { background: var(--navy-mid); height: 360px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.map-section img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.map-overlay { position: absolute; background: var(--navy); padding: 28px 32px; border-radius: 4px; text-align: center; border-top: 3px solid var(--red); }
.map-overlay h4 { font-family: var(--font-head); font-size: 20px; color: white; text-transform: uppercase; margin-bottom: 8px; }
.map-overlay p { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.map-overlay a { color: var(--gold); text-decoration: none; font-family: var(--font-head); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid rgba(212,168,67,.3); padding: 8px 16px; border-radius: 2px; }

/* ── REVIEWS PAGE ── */
.page-hero-inner.reviews-hero { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.hero-score-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; padding: 32px 36px; text-align: center; flex-shrink: 0; }
.hero-score { font-family: var(--font-head); font-size: 72px; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stars { color: var(--gold); font-size: 26px; letter-spacing: 3px; margin: 8px 0; }
.hero-count { font-size: 13px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-head); }
.hero-review-btn { margin-top: 16px; display: inline-block; background: white; color: var(--navy); padding: 10px 18px; border-radius: 20px; text-decoration: none; font-family: var(--font-head); font-size: 13px; letter-spacing: 0.5px; }
.hero-review-btn:hover { background: var(--off-white); }
.rating-bar-section { background: var(--off-white); padding: 50px 5%; border-bottom: 1px solid var(--light-gray); }
.rating-bar-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 220px 1fr; gap: 60px; align-items: center; }
.rating-big-num { font-family: var(--font-head); font-size: 90px; font-weight: 700; color: var(--navy); line-height: 1; }
.rating-big-stars { color: var(--gold); font-size: 28px; letter-spacing: 3px; margin: 6px 0; }
.rating-big-total { font-size: 14px; color: var(--gray); }
.bar-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.bar-label { font-family: var(--font-head); font-size: 13px; color: var(--navy); min-width: 52px; text-align: right; }
.bar-track { flex: 1; height: 10px; background: var(--light-gray); border-radius: 5px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 5px; }
.bar-count { font-size: 13px; color: var(--gray); min-width: 24px; }
.reviews-section { padding: 80px 5%; background: white; }
.reviews-inner { max-width: 1280px; margin: 0 auto; }
.carousel-wrap { position: relative; margin-top: 40px; }
.carousel-track-outer { overflow: hidden; border-radius: 4px; }
.carousel-track { display: flex; transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
.carousel-slide { flex: 0 0 calc(33.333% - 14px); margin-right: 20px; min-width: 0; }
.review-card { background: var(--off-white); padding: 28px 24px; border-radius: 3px; border-top: 3px solid var(--red); height: 100%; box-sizing: border-box; transition: box-shadow 0.2s; }
.review-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.review-stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.review-meta { font-size: 12px; color: var(--gray); }
.review-service { display: inline-block; margin-top: 8px; font-size: 11px; color: var(--red); font-family: var(--font-head); letter-spacing: 1px; text-transform: uppercase; background: rgba(192,57,43,0.07); padding: 3px 8px; border-radius: 2px; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--light-gray); background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--navy); transition: all 0.2s; }
.carousel-btn:hover { background: var(--red); border-color: var(--red); color: white; }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--light-gray); border: none; cursor: pointer; transition: all 0.2s; padding: 0; }
.carousel-dot.active { background: var(--red); width: 24px; border-radius: 4px; }
.carousel-count { font-family: var(--font-head); font-size: 14px; color: var(--gray); letter-spacing: 1px; }

/* ── PROJECTS PAGE ── */
.gallery-section { padding: 80px 5%; }
.gallery-inner { max-width: 1300px; margin: 0 auto; }
.tabs-row { display: flex; gap: 0; margin-top: 36px; margin-bottom: 0; border-bottom: 2px solid var(--light-gray); }
.tab-pane { display: none; padding-top: 28px; }
.tab-pane.active { display: block; }
.ba-section { margin-bottom: 50px; }
.ba-section-title { font-family: var(--font-head); font-size: 20px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.ba-section-title::after { content: ''; flex: 1; height: 1px; background: var(--light-gray); }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.photo-grid .p-img { aspect-ratio: 4/3; overflow: hidden; cursor: zoom-in; }
.photo-grid .p-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.photo-grid .p-img:hover img { transform: scale(1.06); }
.photo-grid .p-img.wide { grid-column: span 2; }
.photo-grid .p-img.tall { grid-row: span 2; aspect-ratio: unset; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 2px; }
.lightbox-close { position: absolute; top: 24px; right: 24px; font-size: 32px; color: white; cursor: pointer; font-family: var(--font-head); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; }
.lightbox-close:hover { background: var(--red); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 40px; color: white; cursor: pointer; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; }
.lightbox-nav:hover { background: var(--red); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.video-section { background: var(--navy); padding: 80px 5%; }
.video-section-inner { max-width: 1200px; margin: 0 auto; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 40px; }
.vid-wrap { border-radius: 3px; overflow: hidden; background: var(--navy-mid); }
.vid-play-wrap { position: relative; cursor: pointer; }
.vid-ratio { position: relative; width: 100%; padding-top: 56.25%; }
.vid-ratio img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.vid-play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(26,35,50,0.3); transition: background 0.2s; }
.vid-play-overlay:hover { background: rgba(26,35,50,0.1); }
.vid-play-btn { width: 60px; height: 60px; background: rgba(192,57,43,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.vid-play-overlay:hover .vid-play-btn { transform: scale(1.1); }
.vid-play-btn::after { content: ''; border-left: 20px solid white; border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px; }
.vid-cap { padding: 14px 18px; }
.vid-cap h4 { font-family: var(--font-head); font-size: 15px; color: white; text-transform: uppercase; }
.vid-cap p { font-size: 13px; color: #555; margin-top: 3px; }

/* ── LOCATION PAGES (cortland / ithaca / binghamton) ── */
.loc-hero { background: var(--navy); padding: 140px 5% 80px; position: relative; overflow: hidden; }
.loc-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #1A2332, #243447); }
.loc-hero::after { content: ''; position: absolute; right: 0; top: 0; width: 40%; bottom: 0; background: linear-gradient(135deg, transparent, rgba(192,57,43,0.15)); clip-path: polygon(15% 0,100% 0,100% 100%,0 100%); }
.loc-hero-stripe { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--red); }
.loc-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 400px; gap: 70px; align-items: start; }
.loc-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 18px; font-family: var(--font-head); letter-spacing: 1px; text-transform: uppercase; }
.loc-breadcrumb a { color: var(--red-light); text-decoration: none; }
.loc-city-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(192,57,43,0.2); border: 1px solid rgba(192,57,43,0.4); color: #FF8A80; padding: 6px 14px; border-radius: 2px; font-family: var(--font-head); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.loc-hero h1 { font-family: var(--font-head); font-size: clamp(38px, 5vw, 66px); font-weight: 700; color: white; line-height: 1.0; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.loc-hero h1 span { color: var(--red-light); }
.loc-hero-desc { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 30px; max-width: 540px; }
.loc-hero-stats { display: flex; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
.loc-stat-num { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--red-light); }
.loc-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.loc-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--red); color: white; padding: 15px 32px; font-family: var(--font-head); font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%); }
.btn-primary:hover { background: var(--red-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; padding: 15px 32px; font-family: var(--font-head); font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: 2px solid rgba(255,255,255,0.3); cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; }
.btn-outline:hover { border-color: white; }
.loc-form-card { background: white; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); overflow: hidden; }
.loc-form-header { background: var(--red); padding: 22px 26px; }
.loc-form-header h3 { font-family: var(--font-head); font-size: 20px; color: white; font-weight: 600; text-transform: uppercase; }
.loc-form-header p { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 4px; }
.loc-form-body { padding: 24px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 13px; border: 1.5px solid #DDD; border-radius: 3px; font-family: var(--font-body); font-size: 14px; color: var(--text); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { height: 80px; resize: none; }
.form-submit { width: 100%; padding: 14px; background: var(--navy); color: white; border: none; font-family: var(--font-head); font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.25s; border-radius: 3px; }
.form-submit:hover { background: var(--red); }
.form-trust { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px; font-size: 12px; color: var(--gray); }
.trust-bar { background: var(--off-white-f); border-top: 3px solid var(--red); border-bottom: 1px solid var(--gray-light); padding: 18px 5%; display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-text { font-family: var(--font-head); font-size: 14px; color: var(--navy); font-weight: 500; }
section { padding: 80px 5%; }
.section-label { font-family: var(--font-head); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; width: 30px; height: 2px; background: var(--red); }
.section-title { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; color: var(--navy); text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; }
.section-title span { color: var(--red); }
.loc-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 40px; background: var(--navy); }
.service-item { background: var(--navy-mid); padding: 28px 24px; transition: background 0.2s; }
.service-item:hover { background: var(--navy-light); }
.service-item .service-icon { font-size: 24px; margin-bottom: 10px; display: block; }
.service-item .service-name { font-family: var(--font-head); font-size: 17px; color: white; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; }
.service-item .service-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.loc-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.why-card { background: white; border: 1px solid var(--gray-light); padding: 28px 24px; border-radius: 3px; border-top: 3px solid var(--red); text-align: center; transition: transform 0.2s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.why-icon { font-size: 32px; margin-bottom: 12px; }
.why-card h4 { font-family: var(--font-head); font-size: 16px; color: var(--navy); text-transform: uppercase; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }
.loc-reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.loc-review-card { background: var(--off-white-f); padding: 28px; border-radius: 3px; border-top: 3px solid var(--red); }
.loc-review-stars { color: var(--gold-f); font-size: 16px; margin-bottom: 12px; }
.loc-review-text { font-size: 15px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.loc-review-author { display: flex; align-items: center; gap: 10px; }
.loc-review-avatar { width: 38px; height: 38px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); color: white; font-size: 15px; font-weight: 700; }
.loc-review-name { font-family: var(--font-head); font-size: 14px; color: var(--navy); font-weight: 600; }
.loc-review-location { font-size: 12px; color: var(--gray-mid); }
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-q { padding: 22px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-head); font-size: 17px; color: var(--navy); font-weight: 600; }
.faq-q:hover { color: var(--red); }
.faq-a { padding: 0 0 20px; font-size: 15px; color: var(--gray-mid); line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { color: var(--red); }
.cta-section { background: var(--red); padding: 70px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(0,0,0,0.03) 0, rgba(0,0,0,0.03) 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.cta-section .section-inner { position: relative; }
.cta-section h2 { font-family: var(--font-head); font-size: clamp(30px, 4vw, 52px); color: white; text-transform: uppercase; font-weight: 700; line-height: 1.05; margin-bottom: 14px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.nearby-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 32px; }
.nearby-city { background: var(--off-white-f); border: 1px solid var(--gray-light); padding: 16px 18px; border-radius: 3px; text-decoration: none; transition: all 0.2s; }
.nearby-city:hover { background: var(--red); border-color: var(--red); }
.nearby-city:hover .nearby-name, .nearby-city:hover .nearby-county { color: white; }
.nearby-name { font-family: var(--font-head); font-size: 15px; color: var(--navy); font-weight: 600; }
.nearby-county { font-size: 12px; color: var(--gray-mid); margin-top: 3px; }

/* ── SPRING SALE PAGE ── */
.sale-hero { background: var(--navy); padding: 130px 5% 80px; position: relative; overflow: hidden; text-align: center; }
.sale-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, #0F1720 0%, #1A2332 40%, #243447 100%); }
.sale-hero-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(243,156,18,0.08) 0%, transparent 70%); pointer-events: none; }
.sale-hero-stripe-l { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--gold-f); }
.sale-hero-stripe-r { position: absolute; right: 0; top: 0; bottom: 0; width: 6px; background: var(--gold-f); }
.sale-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.sale-season-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(243,156,18,0.15); border: 1px solid rgba(243,156,18,0.4); color: var(--gold-light); padding: 8px 20px; border-radius: 2px; font-family: var(--font-head); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px; }
.sale-hero h1 { font-family: var(--font-head); font-size: clamp(22px, 3.5vw, 36px); font-weight: 400; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 8px; }
.sale-discount { font-family: var(--font-head); font-size: clamp(100px, 18vw, 180px); font-weight: 700; color: var(--gold-f); line-height: 0.9; text-transform: uppercase; letter-spacing: -4px; position: relative; display: inline-block; margin-bottom: 8px; }
.sale-discount::after { content: 'OFF'; position: absolute; bottom: 12px; right: -90px; font-size: clamp(32px, 5vw, 56px); color: white; letter-spacing: 2px; }
.sale-hero-sub { font-family: var(--font-head); font-size: clamp(20px, 3vw, 32px); color: white; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.sale-hero-desc { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.sale-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.btn-gold { background: var(--gold-f); color: var(--navy); padding: 18px 44px; font-family: var(--font-head); font-size: 17px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(243,156,18,0.4); }
.btn-outline-white { background: transparent; color: white; padding: 18px 44px; font-family: var(--font-head); font-size: 17px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: 2px solid rgba(255,255,255,0.3); cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.06); }
.countdown-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.countdown-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 20px 28px; border-radius: 3px; text-align: center; min-width: 90px; }
.countdown-num { font-family: var(--font-head); font-size: 44px; font-weight: 700; color: var(--gold-f); line-height: 1; }
.countdown-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2px; margin-top: 6px; }
.countdown-expires { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 20px; font-family: var(--font-head); letter-spacing: 1px; text-transform: uppercase; }
.urgency-bar { background: var(--red); padding: 14px 5%; text-align: center; }
.urgency-bar p { font-family: var(--font-head); font-size: 16px; color: white; font-weight: 600; letter-spacing: 0.5px; }
.urgency-bar span { color: var(--gold-light); }
.included { background: var(--off-white-f); padding: 80px 5%; }
.included-inner { max-width: 1100px; margin: 0 auto; }
.services-sale-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.service-sale-card { background: white; border: 1px solid var(--gray-light); padding: 28px 24px; border-radius: 3px; transition: all 0.2s; position: relative; overflow: hidden; }
.service-sale-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: var(--gold-f); }
.service-sale-card::after { content: '15% OFF'; position: absolute; top: 16px; right: -28px; background: var(--red); color: white; font-family: var(--font-head); font-size: 12px; font-weight: 700; padding: 5px 32px; transform: rotate(45deg); letter-spacing: 1px; }
.service-sale-icon { font-size: 30px; margin-bottom: 12px; }
.service-sale-name { font-family: var(--font-head); font-size: 18px; color: var(--navy); font-weight: 600; text-transform: uppercase; margin-bottom: 8px; }
.service-sale-desc { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }
.service-sale-price { margin-top: 14px; font-family: var(--font-head); font-size: 14px; color: var(--green); font-weight: 600; }
.claim { background: var(--navy); padding: 80px 5%; }
.claim-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.claim .section-label { justify-content: center; color: var(--gold-f); }
.claim .section-label::before { background: var(--gold-f); }
.claim .section-title { color: white; }
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; position: relative; }
.steps-row::before { content: ''; position: absolute; top: 40px; left: calc(16.6% + 20px); right: calc(16.6% + 20px); height: 2px; background: rgba(255,255,255,0.1); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 72px; height: 72px; background: var(--gold-f); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--navy); margin: 0 auto 18px; }
.step h4 { font-family: var(--font-head); font-size: 18px; color: white; text-transform: uppercase; margin-bottom: 10px; }
.step p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.terms-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 3px; padding: 24px 28px; margin-top: 40px; text-align: left; }
.terms-box h4 { font-family: var(--font-head); font-size: 14px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.terms-box ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 24px; }
.terms-box li { font-size: 13px; color: rgba(255,255,255,0.4); padding-left: 14px; position: relative; }
.terms-box li::before { content: '•'; position: absolute; left: 0; color: var(--gold-f); }
.sale-form-section { background: var(--off-white-f); padding: 80px 5%; }
.sale-form-inner { max-width: 700px; margin: 0 auto; }
.sale-form-card { background: white; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); overflow: hidden; border-top: 6px solid var(--gold-f); }
.sale-form-header { background: var(--navy); padding: 30px 36px; }
.sale-form-header h3 { font-family: var(--font-head); font-size: 28px; color: white; font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.sale-form-header h3 span { color: var(--gold-f); }
.sale-form-header p { font-size: 15px; color: rgba(255,255,255,0.65); }
.sale-form-body { padding: 32px 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sale-form-submit { width: 100%; padding: 18px; background: var(--gold-f); color: var(--navy); border: none; font-family: var(--font-head); font-size: 18px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.25s; border-radius: 3px; }
.sale-form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(243,156,18,0.4); }
.form-guarantee { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 14px; color: var(--gray-mid); }
.form-guarantee strong { color: var(--green); }
.sale-badge-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.sale-badge { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-mid); }
.sale-reviews { background: white; padding: 70px 5%; }
.final-cta { background: var(--gold-f); padding: 70px 5%; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(0,0,0,0.03) 0, rgba(0,0,0,0.03) 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.final-cta .inner { position: relative; }
.final-cta h2 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 60px); color: var(--navy); text-transform: uppercase; font-weight: 700; line-height: 1.0; margin-bottom: 12px; }
.final-cta p { font-size: 18px; color: rgba(26,35,50,0.75); margin-bottom: 32px; }
.final-cta-phone { font-family: var(--font-head); font-size: 32px; color: var(--navy); font-weight: 700; margin-top: 20px; display: block; text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { height: auto; min-height: unset; }
  .hero-content { grid-template-columns: 1fr; padding: 60px 5% 0; gap: 36px; }
  .hero h1 { font-size: clamp(36px, 7vw, 56px); }
  .hero-desc { font-size: 15px; max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .hero-trust { gap: 14px; }
  .hero-form { max-width: 100%; border-radius: 0; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-grid { grid-template-columns: 1fr 1fr; }
  .about-img-main { grid-column: span 2; height: 260px !important; min-height: unset !important; }
  .about-img-grid img { height: 180px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-img.wide { grid-column: span 1; }
  .videos-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-top { flex-direction: column; align-items: flex-start; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .brands-logos { gap: 32px; }
  .brand-logo img, .brand-logo-item img { height: 72px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .service-block-inner { grid-template-columns: 1fr; direction: ltr !important; }
  .why-strip-inner { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .why-strip-inner.contact-why { grid-template-columns: 1fr 1fr; }
  .page-hero-inner.reviews-hero { grid-template-columns: 1fr; }
  .hero-score-box { display: none; }
  .rating-bar-inner { grid-template-columns: 1fr; }
  .rating-big-num { font-size: 64px; }
  .carousel-slide { flex: 0 0 calc(50% - 10px); }
  .ba-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid .p-img.wide { grid-column: span 1; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .loc-hero-inner { grid-template-columns: 1fr; }
  .loc-services-grid, .loc-why-grid { grid-template-columns: 1fr 1fr; }
  .loc-reviews-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .services-sale-grid, .steps-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sale-banner p { font-size: 12px; }
  .section { padding: 56px 4%; }
  .hero-content { padding: 48px 4% 0; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .stat-num { font-size: 26px; }
  .about-img-main { height: 200px !important; }
  .about-img-grid img { height: 140px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .tab-btn { padding: 10px 14px; font-size: 12px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .brands-logos { gap: 20px; }
  .brand-logo img, .brand-logo-item img { height: 56px; }
  .brand-logo-item.dark-bg { padding: 8px 12px; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-actions, .cta-actions { flex-direction: column; align-items: center; }
  .cta-band-actions a, .cta-actions a { width: 100%; max-width: 300px; text-align: center; }
  .cta-phone { font-size: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .why-strip-inner { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 4% 50px; }
  .carousel-slide { flex: 0 0 100%; margin-right: 16px; }
  .cta-actions a { width: 100%; max-width: 300px; text-align: center; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .services-sale-grid, .steps-row { grid-template-columns: 1fr; }
  .sale-discount { font-size: 100px; }
  .sale-discount::after { right: -50px; font-size: 28px; }
}
@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .about-img-grid { grid-template-columns: 1fr; }
  .about-img-main { grid-column: span 1; height: 220px !important; }
  .about-img-grid img { height: 160px; }
  .area-grid { grid-template-columns: 1fr 1fr; }
}
