/*
Theme Name: HandymanPro Site
Theme URI: https://github.com/magauthority/HandymanPro-Site
Description: Productized HandymanPro theme — a fill-in-the-blank classic theme designed to be configured per-client via WP Customizer. Clean responsive design with project showcase (via HandymanPro-Portfolio-System plugin), Google Reviews integration (via HandymanPro-Google-Reviews plugin), floating chat widget, and mobile-first CTA bars. Part of the HandymanPro CRM platform.
Author: HandymanPro
Author URI: https://handymanpro.app
Version: 2.0.0-alpha
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: handymanpro-site
Tags: handyman, home-services, classic-theme, customizer, business
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* CSS Variables for Color Palette */
:root {
  --primary-dark: #3d5a6e;
  --primary-medium: #4a7c8f;
  --primary-light: #c0d6df;
  --cta-blue: #2e86ab;
  --cta-green: #4CAF50;
  --gold-tan: #c4a35a;
  --body-text: #555555;
  --heading-text: #333333;
  --light-bg: #f5f7fa;
  --white: #ffffff;
  --footer-bg: #2d3e4a;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
}

.hps-font-practical-sans {
  --font-heading: 'Open Sans', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

.hps-font-premium-serif {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

.hps-font-friendly-rounded {
  --font-heading: 'Nunito Sans', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  line-height: 1.6;
  font-size: 16px;
  margin-top: 0; /* Hero sits behind fixed header */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--cta-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-medium);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-light {
  background-color: var(--light-bg);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--cta-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-medium);
  color: var(--white);
}

.btn-green {
  background-color: var(--cta-green);
  color: var(--white);
}

.btn-green:hover {
  background-color: #45a049;
  color: var(--white);
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 10px 0;
}

/* Offset body content below fixed header */
body {
  padding-top: 100px;
}
body.home {
  padding-top: 0;
}

.header-content {
  display: grid;
  grid-template-columns: 200px auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 60px;
}

.site-logo {
  justify-self: start;
}

.site-logo img {
  max-height: 60px;
  width: auto;
}

.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  justify-self: center;
}

.phone-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  color: var(--white);
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-btn.call {
  background-color: var(--cta-blue);
}

.phone-btn.sms {
  background-color: var(--cta-green);
}

.phone-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.phone-btn svg {
  width: 14px;
  height: 14px;
}

.estimate-btn {
  padding: 6px 16px;
  font-size: 13px;
  white-space: nowrap;
}

/* Navigation Styles */
.main-navigation {
  justify-self: end;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 15px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-navigation a {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--heading-text);
  font-size: 13px;
  padding: 10px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.main-navigation a:hover {
  color: var(--cta-blue);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-top: 10px;
}

.hamburger,
.hamburger:before,
.hamburger:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  background: var(--heading-text);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger:before {
  top: -8px;
}

.hamburger:after {
  top: 5px;
}

.mobile-menu-toggle.active .hamburger {
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger:before {
  top: 0;
  transform: rotate(0deg);
}

.mobile-menu-toggle.active .hamburger:after {
  top: -3px;
  transform: rotate(90deg);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: auto;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(61, 90, 110, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.hero-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  opacity: 0.95;
}

.hero-cta {
  margin-bottom: 60px;
  margin-top: 2rem;
}

.hero-cta .btn {
  font-size: 1.1rem;
  padding: 18px 40px;
}

/* Tab Bar */
.tab-bar {
  background-color: var(--primary-medium);
  padding: 0;
}

.tab-bar-content {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.tab-link {
  flex: 1;
  text-align: center;
  padding: 20px 30px;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: background-color 0.3s ease;
}

.tab-link:last-child {
  border-right: none;
}

.tab-link:hover {
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
}

/* White Glove Section */
.white-glove-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, #e8edf2 100%);
}

.white-glove-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.glove-image img {
  max-width: 300px;
  border-radius: 10px;
}

.value-props {
  list-style: none;
}

.value-prop {
  margin-bottom: 2rem;
  padding-left: 40px;
  position: relative;
}

.value-prop:before {
  content: attr(data-number);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--cta-blue);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.value-prop h4 {
  margin-bottom: 0.5rem;
  color: var(--heading-text);
}

/* What We Do Section */
.what-we-do-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.work-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.work-photo img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cta-blue);
  margin-bottom: 1rem;
}

/* Feature Cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Services Section - Card Grid */

/* Service Cards Grid */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--body-text);
  transition: all 0.3s ease;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-tan);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(61, 90, 110, 0.15);
  border-color: var(--gold-tan);
  color: var(--body-text);
  text-decoration: none;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--cta-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--gold-tan), #d4b76a);
  transform: scale(1.1);
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.service-card h4 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: var(--body-text);
}

/* Responsive */
@media (max-width: 768px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .service-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
}



/* About Section - Redesigned */
.about-content-redesign {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.about-photo-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(61, 90, 110, 0.2);
}

.about-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-tan), var(--cta-blue));
}

.about-photo-frame img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.about-name-plate {
  text-align: center;
  margin-top: 1.25rem;
}

.about-name-plate h3 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  margin: 0;
  font-size: 1.5rem;
}

.about-name-plate span {
  color: var(--gold-tan);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.about-text-col h2 {
  margin-bottom: 1rem;
}

.about-text-col p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Trust Badges */
.about-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e8ecf0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--light-bg);
  border-radius: 10px;
  border-left: 3px solid var(--gold-tan);
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--primary-dark), var(--cta-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
}

.trust-badge-text strong {
  color: var(--primary-dark);
  font-size: 0.95rem;
  line-height: 1.2;
}

.trust-badge-text span {
  color: var(--body-text);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content-redesign {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .about-photo-col {
    max-width: 250px;
    margin: 0 auto;
  }
  .about-trust-badges {
    grid-template-columns: 1fr;
  }
  .about-text-col .section-label,
  .about-text-col h2 {
    text-align: center;
  }
}


/* Service Area Section */
.service-area-section {
  background: linear-gradient(135deg, var(--primary-medium) 0%, var(--cta-blue) 100%);
  color: var(--white);
  text-align: center;
}

.service-area-section h1 {
  color: var(--white);
  margin-bottom: 3rem;
}

.service-area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.community-list {
  list-style: none;
  text-align: left;
}

.community-list li {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-left: 30px;
  position: relative;
}

.community-list li:before {
  content: "📍";
  position: absolute;
  left: 0;
}

.map-embed {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Testimonials */
.testimonials-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
  text-align: center;
}

.testimonial-card:before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: var(--cta-blue);
  font-family: Georgia, serif;
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
}

.testimonial-name {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--heading-text);
}

.testimonial-title {
  color: var(--cta-blue);
  font-size: 14px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  color: var(--heading-text);
}

.review-icons {
  margin-top: 2rem;
}

.review-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 2rem;
}

/* Footer Styles */
.site-footer {
  background-color: var(--footer-bg);
  color: rgba(255,255,255,0.85);
  padding: 50px 0 0;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-column h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.footer-tagline {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.footer-social a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.footer-social a:hover {
  color: var(--white);
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 10px;
}
.footer-column ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}
.footer-column ul li a:hover {
  color: var(--white);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
  fill: rgba(255,255,255,0.5);
}
.footer-contact li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact li a:hover {
  color: var(--white);
}
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-contact li {
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
/* Push inner page content below fixed header */
.page-content, .kitchen-content-wrapper, .estimate-content-wrapper, .project-content-wrapper, .site-main > .container {
  padding-top: 20px;
}
/* Homepage hero needs padding to clear fixed header */
body.home .site-main > .container {
  padding-top: 0;
}
body.home .hero-section {
  padding-top: 220px;
  padding-bottom: 80px;
}

/* Hide Thrive injected elements when Bespoke theme is active */
.thrv_header, .thrv_footer, .tve-leads-ribbon {
  display: none !important;
}


/* Breadcrumbs */
.breadcrumbs {
  background: var(--section-light);
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid #e0e0e0;
}
.breadcrumbs .container {
  padding-top: 0;
}
.breadcrumbs a {
  color: var(--cta-blue);
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .separator {
  margin: 0 6px;
  color: var(--text-light);
}


/* Google Reviews Testimonials */
.google-reviews-badge {
  text-align: center;
  margin-bottom: 40px;
}
.google-reviews-badge .review-stars {
  color: #FBBC05;
  font-size: 1.8rem;
  letter-spacing: 4px;
  margin-right: 10px;
}
.google-reviews-badge .review-source {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}
.testimonials-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  text-align: center;
}
.testimonial-stars {
  color: #FBBC05;
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
}
.testimonial-text {
  font-style: italic;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.testimonial-name {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1rem;
  margin-bottom: 4px;
}
.testimonial-source {
  font-size: 0.85rem;
  color: var(--text-light);
}
@media (max-width: 767px) {
  .testimonials-content {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .testimonials-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Testimonial photos */
.testimonial-photo {
  margin-bottom: 10px;
}
.testimonial-photo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

/* Scroll offset for fixed header on anchor links */
section[id] {
  scroll-margin-top: 120px;
}

/* Fix for WP admin bar pushing fixed header */
.admin-bar .site-header {
  top: 32px;
}
body.admin-bar {
  padding-top: 132px;
}
body.admin-bar.home {
  padding-top: 32px;
}
.admin-bar .hero-section {
  padding-top: 220px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
  body.admin-bar {
    padding-top: 146px;
  }
  body.admin-bar.home {
    padding-top: 46px;
  }
}

/* Testimonial Dates */
.testimonial-date {
  font-size: 0.8rem;
  color: #999;
  margin-top: 2px;
}

.google-logo-sm {
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
}

/* Review CTA Links */
.review-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.review-link-google {
  background: #fff;
  border: 2px solid #e8ecf0;
  color: var(--heading-text);
}

.review-link-google:hover {
  border-color: #4285f4;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--heading-text);
}

.review-link-facebook {
  background: #1877f2;
  border: 2px solid #1877f2;
  color: #fff;
}

.review-link-facebook:hover {
  background: #166fe5;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

/* Nextdoor Review Button */
.review-link-nextdoor {
  background: #8ed500;
  border: 2px solid #8ed500;
  color: #fff;
}

.review-link-nextdoor:hover {
  background: #7ec200;
  box-shadow: 0 4px 12px rgba(142, 213, 0, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

/* Recent Projects Section */
.recent-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.recent-project-card {
  text-decoration: none;
  color: var(--body-text);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: block;
}

.recent-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(61, 90, 110, 0.18);
  text-decoration: none;
  color: var(--body-text);
}

.recent-project-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.recent-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.recent-project-card:hover .recent-project-image img {
  transform: scale(1.08);
}

.recent-project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 90, 110, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recent-project-card:hover .recent-project-overlay {
  opacity: 1;
}

.view-project {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 20px;
  border: 2px solid #fff;
  border-radius: 6px;
}

.recent-project-info {
  padding: 1rem 1.25rem;
}

.recent-project-cat {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-tan);
}

.recent-project-info h4 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-size: 1rem;
  margin: 0.25rem 0 0;
  line-height: 1.3;
}

/* Outline button style */
.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: var(--white);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .recent-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .recent-projects-grid {
    grid-template-columns: 1fr;
  }
  .recent-project-image {
    height: 200px;
  }
}

/* ============================================
   TENANT DESIGN VARIATIONS
   ============================================ */

.hps-style-bold-trades {
  --light-bg: #f4f1ea;
  background: #fbfaf7;
}

.hps-style-bold-trades .site-header {
  background: var(--primary-dark);
  border-bottom: 4px solid var(--gold-tan);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.hps-style-bold-trades .main-navigation a,
.hps-style-bold-trades .site-logo a {
  color: var(--white);
}

.hps-style-bold-trades .hamburger,
.hps-style-bold-trades .hamburger:before,
.hps-style-bold-trades .hamburger:after {
  background: var(--white);
}

.hps-style-bold-trades .hero-section {
  justify-content: flex-start;
  text-align: left;
  background-position: center right;
}

.hps-style-bold-trades .hero-overlay {
  background: linear-gradient(90deg, rgba(25, 31, 35, 0.88) 0%, rgba(25, 31, 35, 0.68) 48%, rgba(25, 31, 35, 0.18) 100%);
}

.hps-style-bold-trades .hero-content {
  max-width: 680px;
  margin-left: max(24px, calc((100vw - 1200px) / 2 + 20px));
  padding: 0 24px;
  text-shadow: none;
}

.hps-style-bold-trades .hero-content h1 {
  font-size: 3.4rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.hps-style-bold-trades .hero-content h3 {
  max-width: 620px;
  font-weight: 600;
}

.hps-style-bold-trades .btn,
.hps-style-bold-trades .phone-btn {
  border-radius: 3px;
  letter-spacing: 0;
}

.hps-style-bold-trades .tab-bar {
  background: #24272a;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 4px solid var(--gold-tan);
}

.hps-style-bold-trades .section-label {
  color: var(--primary-dark);
  letter-spacing: 0;
}

.hps-style-bold-trades .feature-card,
.hps-style-bold-trades .service-card,
.hps-style-bold-trades .recent-project-card,
.hps-style-bold-trades .testimonial-card {
  border-radius: 4px;
  border: 1px solid rgba(61, 90, 110, 0.22);
  box-shadow: none;
}

.hps-style-bold-trades .feature-card {
  text-align: left;
  border-left: 6px solid var(--gold-tan);
}

.hps-style-bold-trades .service-card {
  text-align: left;
  padding: 1.5rem;
  border-left: 6px solid var(--primary-dark);
}

.hps-style-bold-trades .service-card-icon {
  margin: 0 0 1rem;
  border-radius: 4px;
  background: var(--primary-dark);
}

.hps-style-bold-trades .service-card:hover .service-card-icon {
  background: var(--gold-tan);
}

.hps-style-bold-trades .white-glove-section,
.hps-style-bold-trades .section-light {
  background: #f4f1ea;
}

.hps-style-bold-trades .about-photo-frame,
.hps-style-bold-trades .glove-image img,
.hps-style-bold-trades .work-photo img {
  border-radius: 4px;
}

.hps-style-polished-modern {
  --light-bg: #f7f9fb;
  background: #ffffff;
}

.hps-style-polished-modern .site-header {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(61, 90, 110, 0.12);
}

.hps-style-polished-modern .header-content {
  max-width: 1320px;
}

.hps-style-polished-modern .hero-section {
  justify-content: flex-start;
  text-align: left;
  min-height: 760px;
  background-position: center;
}

.hps-style-polished-modern .hero-overlay {
  background: linear-gradient(105deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.86) 44%, rgba(255,255,255,0.2) 72%);
}

.hps-style-polished-modern .hero-content {
  max-width: 640px;
  margin-left: max(24px, calc((100vw - 1200px) / 2 + 20px));
  padding: 0 24px;
  text-shadow: none;
}

.hps-style-polished-modern .hero-content h1 {
  color: var(--primary-dark);
  font-size: 3.3rem;
  line-height: 1.08;
}

.hps-style-polished-modern .hero-content h3 {
  color: var(--body-text);
  font-size: 1.15rem;
  font-weight: 500;
  opacity: 1;
}

.hps-style-polished-modern .btn,
.hps-style-polished-modern .phone-btn,
.hps-style-polished-modern .service-card,
.hps-style-polished-modern .feature-card,
.hps-style-polished-modern .testimonial-card,
.hps-style-polished-modern .recent-project-card,
.hps-style-polished-modern .trust-badge {
  border-radius: 8px;
  letter-spacing: 0;
}

.hps-style-polished-modern .tab-bar {
  background: var(--white);
  border-bottom: 1px solid #e8ecf0;
}

.hps-style-polished-modern .tab-link {
  color: var(--primary-dark);
  border-right-color: #e8ecf0;
}

.hps-style-polished-modern .tab-link:hover {
  background: var(--light-bg);
  color: var(--cta-blue);
}

.hps-style-polished-modern .white-glove-section,
.hps-style-polished-modern .section-light {
  background: var(--light-bg);
}

.hps-style-polished-modern .feature-card,
.hps-style-polished-modern .service-card,
.hps-style-polished-modern .recent-project-card,
.hps-style-polished-modern .testimonial-card {
  border: 1px solid #e8ecf0;
  box-shadow: 0 10px 30px rgba(61, 90, 110, 0.08);
}

.hps-style-polished-modern .service-cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hps-style-polished-modern .service-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 1rem;
  text-align: left;
  align-items: start;
}

.hps-style-polished-modern .service-card::before {
  display: none;
}

.hps-style-polished-modern .service-card-icon {
  margin: 0;
  border-radius: 8px;
  background: var(--primary-light);
}

.hps-style-polished-modern .service-card-icon svg {
  color: var(--primary-dark);
}

.hps-style-polished-modern .service-card h4,
.hps-style-polished-modern .service-card p {
  grid-column: 2;
}

.hps-style-polished-modern .about-content-redesign {
  align-items: center;
}

.hps-style-polished-modern .service-area-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--cta-blue));
}

/* ============================================
   HOMEPAGE LAYOUT PRESETS
   ============================================ */

.hps-home {
  padding-top: 96px;
}

.hps-eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(46, 134, 171, 0.12);
  color: var(--cta-blue);
  font-weight: 800;
  font-size: 0.82rem;
}

.hps-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hps-home-trade-command {
  background: #f6f1e7;
}

.hps-trade-hero {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: calc(100vh - 96px);
}

.hps-trade-rail {
  background: #1f262b;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 22px 12px;
}

.hps-trade-mark {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--gold-tan);
  color: #15120b;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.hps-trade-rail nav {
  display: grid;
  gap: 18px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hps-trade-phone {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--gold-tan);
  font-weight: 900;
  font-size: 0.86rem;
}

.hps-trade-content {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(480px, 1.1fr);
  gap: 36px;
  padding: 54px 44px;
  align-items: center;
}

.hps-trade-copy h1,
.hps-modern-copy h1,
.hps-craft-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hps-trade-copy p,
.hps-modern-copy p,
.hps-craft-copy p {
  color: var(--body-text);
  font-size: 1.08rem;
  max-width: 620px;
}

.hps-trade-photo {
  min-height: 560px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.hps-trade-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.hps-trade-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.68));
}

.hps-trade-proof {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hps-trade-proof div {
  background: rgba(255,255,255,0.93);
  border-radius: 6px;
  padding: 14px;
}

.hps-trade-proof strong,
.hps-trade-proof span {
  display: block;
}

.hps-trade-proof strong {
  color: var(--heading-text);
}

.hps-trade-proof span {
  color: var(--body-text);
  font-size: 0.82rem;
  font-weight: 700;
}

.hps-trade-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(31, 38, 43, 0.16);
  padding: 1px;
}

.hps-trade-service {
  background: #fbfaf6;
  padding: 24px;
  color: var(--body-text);
}

.hps-trade-service strong {
  color: var(--heading-text);
  display: block;
  margin-bottom: 8px;
}

.hps-trade-service p {
  margin: 0;
  font-size: 0.92rem;
}

.hps-trade-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 48px 44px;
  background: var(--primary-dark);
  color: #fff;
}

.hps-trade-band h2 {
  color: #fff;
  margin: 8px 0 0;
}

.hps-trade-band span {
  color: var(--gold-tan);
  font-weight: 800;
}

.hps-home-modern-care {
  background: #fff;
}

.hps-modern-hero {
  display: grid;
  grid-template-columns: minmax(400px, 0.95fr) minmax(480px, 1.05fr);
  min-height: calc(100vh - 96px);
  background: var(--light-bg);
}

.hps-modern-copy {
  padding: 70px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hps-modern-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.hps-modern-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.hps-modern-estimate-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(380px, calc(100% - 56px));
  background: #fff;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(23, 33, 41, 0.22);
}

.hps-modern-estimate-card strong {
  display: block;
  color: var(--heading-text);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.hps-modern-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--primary-dark);
  color: #fff;
}

.hps-modern-process article {
  padding: 30px 34px;
  border-right: 1px solid rgba(255,255,255,0.16);
}

.hps-modern-process span {
  display: block;
  color: var(--gold-tan);
  font-weight: 900;
  font-size: 1.8rem;
}

.hps-modern-process p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}

.hps-modern-services {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 36px;
  padding: 60px 54px;
}

.hps-modern-section-heading h2,
.hps-modern-about h2,
.hps-craft-showcase h2,
.hps-craft-services h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
}

.hps-modern-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hps-modern-service-card {
  border: 1px solid #e2e9ee;
  border-radius: 8px;
  padding: 18px;
  color: var(--body-text);
}

.hps-modern-service-card strong {
  color: var(--heading-text);
  display: block;
  margin-bottom: 8px;
}

.hps-modern-service-card p {
  margin: 0;
  font-size: 0.92rem;
}

.hps-modern-about {
  padding: 70px 54px;
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
}

.hps-modern-about h2,
.hps-modern-about p {
  color: #fff;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hps-layout-projects {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 64px 54px;
}

.hps-layout-projects-trade {
  background: #fbfaf6;
}

.hps-layout-projects-modern {
  background: #fff;
}

.hps-layout-section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  margin: 14px 0 16px;
}

.hps-layout-section-heading > a {
  color: var(--cta-blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.hps-layout-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hps-layout-project-card {
  display: grid;
  grid-template-rows: 180px auto auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(61, 90, 110, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--heading-text);
  box-shadow: 0 16px 40px rgba(61, 90, 110, 0.08);
}

.hps-layout-project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hps-layout-project-card strong {
  display: block;
  padding: 16px 16px 4px;
  color: var(--heading-text);
  line-height: 1.25;
}

.hps-layout-project-card span {
  display: block;
  padding: 0 16px 16px;
  color: var(--cta-blue);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hps-home-craft-portfolio {
  background: #151a1f;
  color: #fff;
}

.hps-craft-hero {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(520px, 1.1fr);
  min-height: calc(100vh - 96px);
  background: #151a1f;
  overflow: hidden;
}

.hps-craft-copy {
  padding: 70px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}

.hps-craft-copy h1,
.hps-craft-copy p,
.hps-craft-showcase h2,
.hps-craft-services h2 {
  color: #fff;
}

.hps-craft-copy p {
  color: rgba(255,255,255,0.76);
}

.hps-craft-media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1.25fr 0.75fr;
  gap: 12px;
  padding: 44px 44px 44px 0;
  min-width: 0;
  min-height: 640px;
}

.hps-craft-media-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  border-radius: 8px;
}

.hps-craft-media-grid img:first-child {
  grid-row: span 2;
}

.hps-craft-showcase {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 28px;
  align-items: start;
  padding: 0 44px 54px;
}

.hps-craft-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hps-craft-project-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
}

.hps-craft-project-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.hps-craft-project-card div {
  padding: 16px;
}

.hps-craft-project-card strong,
.hps-craft-project-card span {
  display: block;
}

.hps-craft-project-card span {
  color: var(--gold-tan);
  font-size: 0.85rem;
  font-weight: 800;
}

.hps-craft-services {
  padding: 54px 44px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hps-craft-services > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hps-craft-services a {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,0.06);
}

.hps-craft-services strong,
.hps-craft-services span {
  display: block;
}

.hps-craft-services span {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  margin-top: 8px;
}

.hps-craft-cta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 34px 44px;
  background: var(--gold-tan);
  color: #1b1710;
}

.hps-craft-cta strong {
  font-size: 1.65rem;
}

.hps-craft-cta .btn-primary {
  background: #151a1f;
}

.hps-home-craft-portfolio .btn-outline {
  border-color: rgba(255,255,255,0.48);
  color: #fff;
}

.hps-home-craft-portfolio .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.hps-home-reviews {
  padding: 64px 0;
  background: #fff;
}

.hps-home-reviews h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.hps-home-reviews-craft {
  background: #1d2329;
  color: #fff;
}

.hps-home-reviews-craft h2 {
  color: #fff;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--primary-dark);
  padding: 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.sticky-mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sticky-cta-call {
  color: #fff !important;
  background: var(--primary-dark);
}

.sticky-cta-text {
  color: #fff !important;
  background: var(--cta-blue);
}

.sticky-cta-estimate {
  color: #fff !important;
  background: var(--cta-green);
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex;
  }
  .sticky-mobile-cta a {
    flex: 1;
  }
  /* Add bottom padding to body so footer content isn't hidden behind sticky bar */
  body {
    padding-bottom: 56px;
  }
}

/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */

@media (max-width: 768px) {
  
  /* --- HEADER --- */
  .header-content {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 8px 16px;
    min-height: auto;
  }
  
  .site-logo {
    grid-column: 1;
    grid-row: 1;
  }
  
  .site-logo img {
    max-height: 45px;
  }
  
  .header-center {
    display: none; /* Hide on mobile — sticky CTA handles this */
  }
  
  .main-navigation {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-navigation ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-radius: 0 0 12px 12px;
    flex-direction: column;
    gap: 0;
    min-width: 250px;
    padding: 8px 0;
    z-index: 1000;
  }
  
  .main-navigation.active ul {
    display: flex;
  }
  
  .main-navigation a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .main-navigation li:last-child a {
    border-bottom: none;
  }
  
  /* --- BODY PADDING --- */
  body {
    padding-top: 65px;
  }
  
  /* --- HERO --- */
  .hero-section {
    min-height: 720px;
    height: auto;
    padding: 112px 0 56px;
    background-attachment: scroll; /* Fixed BG breaks on mobile */
    align-items: flex-start;
  }

  body.home .hero-section {
    padding-top: 112px;
  }

  .hero-content {
    width: 100%;
    padding: 0 18px;
  }
  
  .hero-content h1 {
    font-size: clamp(2rem, 10vw, 2.5rem);
    line-height: 1.08;
    margin-bottom: 1.2rem;
  }
  
  .hero-content h3 {
    font-size: 0.95rem;
  }

  .hps-style-bold-trades .hero-content,
  .hps-style-polished-modern .hero-content {
    margin-left: 0;
    max-width: none;
    text-align: center;
  }

  .hps-style-bold-trades .hero-overlay,
  .hps-style-polished-modern .hero-overlay {
    background: rgba(25, 31, 35, 0.68);
  }

  .hps-style-polished-modern .hero-content h1,
  .hps-style-polished-modern .hero-content h3 {
    color: var(--white);
  }

  .hps-style-polished-modern .service-cards-grid {
    grid-template-columns: 1fr;
  }

  .hps-style-polished-modern .service-card {
    grid-template-columns: 52px 1fr;
  }

  .hps-home {
    padding-top: 65px;
  }

  .hps-trade-hero,
  .hps-trade-content,
  .hps-modern-hero,
  .hps-modern-services,
  .hps-layout-projects,
  .hps-craft-hero,
  .hps-craft-showcase {
    grid-template-columns: 1fr;
  }

  .hps-trade-rail {
    display: none;
  }

  .hps-trade-content,
  .hps-modern-copy,
  .hps-modern-services,
  .hps-modern-about,
  .hps-craft-copy,
  .hps-craft-showcase,
  .hps-layout-projects,
  .hps-craft-services,
  .hps-craft-cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hps-trade-photo,
  .hps-modern-media {
    min-height: 420px;
  }

  .hps-trade-proof,
  .hps-trade-services,
  .hps-modern-process,
  .hps-modern-service-grid,
  .hps-layout-project-grid,
  .hps-craft-projects,
  .hps-craft-services > div {
    grid-template-columns: 1fr;
  }

  .hps-trade-band,
  .hps-craft-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hps-craft-media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
    padding: 0 22px 34px;
  }

  .hps-craft-media-grid img {
    height: 280px;
  }
  
  /* --- TAB BAR --- */
  .tab-bar-content {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .tab-link {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
  
  /* --- WHITE GLOVE --- */
  .white-glove-content {
    flex-direction: column;
  }
  
  .glove-image {
    max-width: 200px;
    margin: 0 auto;
  }
  
  /* --- WHAT WE DO / WHY WE DO IT --- */
  .what-we-do-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .work-photos {
    grid-template-columns: 1fr;
  }
  
  /* --- FEATURE CARDS --- */
  .feature-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* --- SECTIONS GENERAL --- */
  .section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 16px;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .section-label {
    font-size: 0.8rem;
  }

  /* --- SERVICE AREA --- */
  .service-area-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-area-section h1 {
    font-size: 1.5rem;
  }
  
  .map-embed iframe {
    height: 300px !important;
  }
  
  /* --- TESTIMONIALS --- */
  .testimonials-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* --- CONTACT --- */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* --- FOOTER --- */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-review-links {
    text-align: center;
  }
  
  .footer-review-links div {
    justify-content: center !important;
  }
  
  /* --- REVIEW BUTTONS --- */
  .review-links {
    flex-direction: column;
    align-items: center;
  }
  
  .review-link-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Small phones */
@media (max-width: 375px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .about-trust-badges {
    grid-template-columns: 1fr;
  }
}

/* White Glove Mobile Fix */
@media (max-width: 768px) {
  .white-glove-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .glove-image {
    text-align: center;
  }
  .glove-image img {
    max-width: 180px;
    margin: 0 auto;
  }
  .value-prop {
    padding-left: 40px;
    margin-bottom: 1.5rem;
  }
  .value-prop h4 {
    font-size: 1rem;
  }
  .value-prop p {
    font-size: 0.9rem;
  }
  .white-glove-section .container {
    overflow: hidden;
  }
  .white-glove-section h2 {
    font-size: 1.4rem;
  }
}
html, body { overflow-x: hidden; }
