/* ============================================
   Bathroom & Deck Remodeling Specialist
   Green & Yellow palette (handyman603 style)
   ============================================ */

:root {
  /* Primary - Green ( unmistakably green, no blue tint) */
  --color-green: #228b22;
  --color-green-dark: #166316;
  --color-green-light: #2e9d2e;
  
  /* Accent - Yellow */
  --color-yellow: #ffc107;
  --color-yellow-hover: #ffca28;
  --color-yellow-light: #ffecb3;
  
  /* Text */
  --color-slate: #2d3748;
  --color-slate-light: #4a5568;
  
  /* Neutrals */
  --color-white: #ffffff;
  --color-off-white: #f8faf6;
  --color-gray-100: #eef4eb;
  --color-gray-200: #d4e4d0;
  
  /* Typography */
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 3.5rem 0;
  --container-max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-slate);
  background: var(--color-white);
}

.page-main {
  min-height: 50vh;
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* ========== Header ========== */
.header {
  background: white;
  color: var(--color-slate);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  padding: 0.75rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 2px solid var(--color-green);
  border-radius: 4px;
  cursor: pointer;
  color: var(--color-green-dark);
}

.nav-toggle .nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s, opacity 0.25s;
}

body.nav-open .nav-toggle .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 65px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

.logo:hover img {
  opacity: 0.9;
}

.tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.nav-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-main a {
  color: var(--color-slate);
  text-decoration: none;
  font-weight: 500;
}

.nav-main a:hover {
  color: var(--color-green);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--color-gray-200);
  border-top: 3px solid var(--color-green);
  min-width: 220px;
  padding: 0.25rem 0;
  margin-top: 0.25rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  list-style: none;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.15rem 1rem;
  color: var(--color-slate);
  line-height: 1.35;
}

.dropdown-menu a:hover {
  background: var(--color-gray-100);
  color: var(--color-green);
}

.btn-cta-nav {
  background: var(--color-yellow) !important;
  color: var(--color-green-dark) !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.btn-cta-nav:hover {
  background: var(--color-yellow-hover) !important;
}

.review-link {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ========== Feature Bar ========== */
.feature-bar {
  background: #fafafa;
  border-top: 3px solid var(--color-green);
  border-bottom: 2px solid var(--color-green);
  padding: 1rem 0;
}

.feature-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  display: flex;
  align-items: center;
  color: var(--color-green);
  flex-shrink: 0;
}

.feature-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-slate);
}

@media (max-width: 768px) {
  .feature-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .feature-item {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }

  .feature-text {
    font-size: 0.85rem;
  }
}

/* ========== Hero ========== */
.hero {
  background: white;
  color: var(--color-slate);
  margin: 0;
}

.hero-split {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-areas: "contact image";
  gap: 0;
  min-height: 450px;
  padding: 0;
}

.hero-left {
  grid-area: contact;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 3rem;
  padding-top: 2.5rem;
  background: #f9f9f9;
}

.hero-left-content {
  max-width: 420px;
  width: 100%;
  text-align: left;
}

.hero-right {
  grid-area: image;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-cta-banner {
  display: none;
  background: var(--color-yellow);
  color: var(--color-green-dark);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  text-align: center;
  flex-shrink: 0;
}

.hero-banner {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.hero-left .hero-phone {
  margin: 0 0 1rem;
}

.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-green);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
}

.hero-phone-link:hover {
  color: var(--color-green-dark);
}

.hero-phone-icon {
  flex-shrink: 0;
}

.hero-logo {
  max-width: 400px;
  width: 90%;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}

.hero-phone {
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.hero-phone a {
  color: var(--color-green);
  text-decoration: none;
}

.hero-phone a:hover {
  color: var(--color-green-dark);
}

.btn-hero {
  display: inline-block;
  width: auto;
  background: var(--color-yellow);
  color: var(--color-green-dark);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  align-self: center;
}

.btn-hero:hover {
  background: var(--color-yellow-hover);
}

/* ========== Trust Badges ========== */
.trust-badges {
  background: var(--color-gray-100);
  padding: var(--section-padding);
  border-top: 4px solid var(--color-yellow);
}

.trust-badges .container {
  text-align: center;
}

.trust-stars {
  color: var(--color-yellow);
  margin-bottom: 0.75rem;
}

.trust-stars svg {
  display: block;
  margin: 0 auto;
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-green-dark);
  margin: 0 0 0.75rem;
}

.trust-subheading {
  margin: 0 auto 1.5rem;
  max-width: 800px;
  line-height: 1.6;
  color: var(--color-slate);
}

.trust-subtitle {
  font-size: 1.2rem;
  color: var(--color-slate);
  margin: 0 0 1rem;
}

.trust-text {
  margin: 0 0 0.75rem;
  max-width: 800px;
}

.trust-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========== Buttons ========== */
.btn-primary {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-green-dark);
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

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

.btn-secondary {
  display: inline-block;
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: var(--color-green-dark);
}

.btn-schedule {
  margin-top: 1rem;
}

/* ========== Welcome Section ========== */
.welcome {
  padding: var(--section-padding);
  border-top: 4px solid var(--color-green);
}

.welcome-heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-green-dark);
  text-align: center;
  margin: 0 0 2rem;
  padding: 0 1rem;
}

.welcome-split .welcome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content image";
  gap: 0;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome-split .welcome-content {
  padding: 2rem 3rem;
  max-width: 100%;
  grid-area: content;
}

.welcome-image {
  grid-area: image;
  overflow: hidden;
  min-height: 360px;
  max-width: 100%;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.welcome h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-green-dark);
  margin: 0 0 0.5rem;
}

.welcome-lead {
  font-size: 1.15rem;
  color: var(--color-slate-light);
  margin: 0 0 1.5rem;
}

.welcome-content {
  max-width: 800px;
}

.welcome-content a {
  color: var(--color-green);
  font-weight: 600;
}

.welcome-content a:hover {
  text-decoration: underline;
}

/* ========== Services Grid ========== */
.services {
  background: var(--color-off-white);
  padding: var(--section-padding);
  border-top: 4px solid var(--color-yellow);
}

.services h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-green-dark);
  margin: 0 0 2rem;
}

.process-section .container {
  text-align: center;
}

.process-intro {
  font-size: 1.1rem;
  color: var(--color-slate);
  margin: 0 auto 2rem;
  max-width: 700px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.process-step {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 260px;
  background: white;
  padding: 1.5rem;
  border-radius: 4px;
  border-top: 3px solid var(--color-green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  padding: 0 0.25rem;
  color: var(--color-green);
}

.process-arrow {
  width: 56px;
  height: 28px;
  flex-shrink: 0;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-green);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--color-green-dark);
  margin: 0;
  line-height: 1.4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--color-green-dark);
  margin: 0;
  padding: 1.25rem 1.75rem;
  font-weight: 600;
}

.service-card-link:hover h3 {
  color: var(--color-green);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

/* ========== SEO Content ========== */
.seo-content {
  padding: var(--section-padding);
  border-top: 4px solid var(--color-green);
}

.seo-block {
  max-width: 800px;
  margin-bottom: 2rem;
}

.seo-block:last-child {
  margin-bottom: 0;
}

.seo-block h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-green-dark);
  margin: 0 0 0.75rem;
}

/* ========== Portfolio ========== */
.portfolio {
  padding: var(--section-padding);
  border-top: 4px solid var(--color-yellow);
}

.portfolio h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-green-dark);
  margin: 0 0 0.5rem;
  text-align: center;
}

.portfolio-intro {
  margin: 0 0 1.5rem;
  text-align: center;
}

.portfolio-grid .before-after-item {
  display: flex;
  flex-direction: column;
}

.portfolio-caption {
  margin: 0.5rem 0 0;
  padding: 0 0.25rem;
  font-size: 0.9rem;
  color: var(--color-slate-light);
  text-align: center;
  line-height: 1.3;
}

/* Carousel */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto 1rem;
}

.carousel-track-container {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 0.25rem;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  touch-action: manipulation;
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-green);
  background: #fff;
  color: var(--color-green);
  font-size: 1.25rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.carousel-btn:hover {
  background: var(--color-green);
  color: #fff;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gray-300);
  border: none;
  cursor: pointer;
  padding: 0;
}

.carousel-dots .dot.active {
  background: var(--color-green);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  touch-action: manipulation;
  -webkit-overflow-scrolling: touch;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-caption,
.lightbox-counter {
  color: #fff;
  margin: 0;
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.3);
}

@media (max-width: 600px) {
  .lightbox {
    padding: 1rem;
  }
  .lightbox-content img {
    max-height: 70vh;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

/* ========== Reviews CTA ========== */
.reviews-cta {
  background: var(--color-gray-100);
  padding: var(--section-padding);
  border-top: 4px solid var(--color-green);
}

.reviews-cta .container {
  text-align: center;
}

.reviews-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-green-dark);
  margin: 0 0 0.5rem;
}

.reviews-cta p {
  margin: 0 0 1rem;
}

.reviews-cta .btn-primary {
  margin-top: 0;
}

/* ========== Contact ========== */
/* Contact page hero */
.contact-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 140px;
  padding: 2rem;
  background: var(--color-off-white);
}

.contact-hero-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-hero-image {
  flex-shrink: 0;
  width: 140px;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  flex-direction: column;
}

.contact-hero-caption {
  margin: 0;
  padding: 0.4rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-green-dark);
  text-align: center;
  background: var(--color-off-white);
}

.contact-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  object-position: center top;
}

.contact-hero-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  flex: 0 1 auto;
  min-width: 200px;
}

.contact-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--color-green-dark);
  margin: 0 0 0.5rem;
}

.contact-hero-lead {
  font-size: 1.15rem;
  color: var(--color-slate-light);
  margin: 0 0 0.75rem;
}

.contact-hero-content p:last-child {
  margin: 0;
}

.contact-hero-content a {
  color: var(--color-green);
  font-weight: 600;
}

.contact-hero-content a:hover {
  text-decoration: underline;
}

/* Contact info cards */
.contact-info-section {
  padding: 2rem 0;
  background: var(--color-white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-info-card {
  padding: 1.5rem;
  background: var(--color-off-white);
  border-radius: 6px;
  border-left: 4px solid var(--color-green);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-green-dark);
  margin: 0 0 0.5rem;
}

.contact-info-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact form row */
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-intro h2 {
  margin-top: 0;
}

.contact-form-intro p {
  margin: 0 0 1rem;
}

.contact-quick-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-gray-200);
}

.contact-quick-info p {
  margin: 0 0 0.5rem;
}

.contact-quick-info a {
  color: var(--color-green);
  font-weight: 600;
}

.contact-quick-info a:hover {
  text-decoration: underline;
}

.contact {
  padding: var(--section-padding);
  border-top: 4px solid var(--color-yellow);
}

.contact h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-green-dark);
  margin: 0 0 0.5rem;
}

.contact-intro {
  margin: 0 0 1.5rem;
}

.contact-form {
  max-width: 560px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-gray-200);
  border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
}

.form-group input[type="file"] {
  padding: 0.5rem 0;
  border: none;
  width: 100%;
  font-size: 0.95rem;
}

.form-group-checkbox {
  margin-bottom: 1rem;
}

.form-legal-links {
  margin: 0 0 1.25rem;
  padding-left: 1.85rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-text-muted, #5c6b5a);
}

.form-legal-links a {
  color: var(--color-primary, #2d5016);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-legal-links a:hover {
  color: var(--color-primary-dark, #1e3610);
}

.checkbox-label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact.quote-funnel .contact-form {
  max-width: 700px;
}

.quote-funnel-note {
  background: var(--color-gray-100);
  border-left: 4px solid var(--color-green);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.98rem;
  color: var(--color-slate);
}

.form-group-project-subtype[hidden] {
  display: none;
}


.contact-phone {
  margin-top: 1.5rem;
}

.contact-phone p + p {
  margin-top: 0.35rem;
}

.contact-phone a {
  color: var(--color-green);
  font-weight: 600;
}

.contact-phone a[href^="mailto"],
.contact-quick-info a[href^="mailto"] {
  white-space: nowrap;
  font-size: clamp(0.78rem, 2.5vw, 1rem);
  letter-spacing: -0.01em;
}

/* ========== Footer ========== */
.footer {
  background: var(--color-green-dark);
  color: rgba(255,255,255,0.85);
  padding: 2.5rem 0 0;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem 1.5rem;
}

@media (min-width: 640px) {
  .footer-inner {
    padding: 0 1.5rem 2rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-column h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: var(--color-yellow);
}

.footer-contact p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
}

.footer-contact-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  color: var(--color-yellow);
}

.footer-contact-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-contact .footer-phone {
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-contact .footer-phone a {
  color: #fff;
}

.footer-contact .footer-phone a:hover {
  color: var(--color-yellow);
}

.footer-contact .footer-email {
  flex-wrap: nowrap;
}

.footer-contact .footer-email a {
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  font-size: clamp(0.72rem, 2.4vw, 0.88rem);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.footer-contact .footer-email a:hover {
  color: var(--color-yellow);
}

.footer-contact .footer-hours span:last-child {
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact .btn-primary {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1rem 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-yellow);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

/* ========== Legal pages ========== */
.legal-page {
  padding: 3rem 0 4rem;
}

.legal-dba {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-muted, #5c6b5a);
  margin-bottom: 0.5rem;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-green-dark);
  margin: 0 0 0.5rem;
}

.legal-effective-date {
  margin: 0 0 1rem;
  color: var(--color-slate-light);
  font-size: 0.95rem;
}

.legal-intro {
  margin: 0 0 2rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-green);
  margin: 0 0 0.75rem;
}

.legal-section h3 {
  font-size: 1.05rem;
  color: var(--color-slate);
  margin: 1.25rem 0 0.5rem;
}

.legal-section p,
.legal-section ul {
  margin: 0 0 1rem;
}

.legal-section ul {
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.35rem;
}

.legal-section a {
  color: var(--color-green);
}

.legal-section a:hover {
  color: var(--color-green-dark);
}

/* ========== Mobile ========== */
@media (max-width: 900px) {
  /* Header collapse into hamburger menu */
  .header-content {
    flex-wrap: wrap;
  }

  .header-brand {
    flex: 1;
    min-width: 0;
    order: 1;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    order: 2;
  }

  .nav-main {
    order: 3;
    width: 100%;
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.2s ease;
  }

  body.nav-open .nav-main,
  .nav-main[aria-hidden="false"] {
    max-height: 600px;
    opacity: 1;
  }

  .nav-main ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0 0.5rem;
    border-top: 3px solid var(--color-green);
    margin-top: 0.5rem;
  }

  .nav-main li {
    border-bottom: 1px solid var(--color-gray-200);
  }

  .nav-main li:last-child {
    border-bottom: none;
  }

  .nav-main a {
    display: flex;
    align-items: center;
    padding: 0.85rem 0;
    min-height: 48px;
    line-height: 1.4;
  }

  /* Disable hover dropdown on mobile - use click instead */
  .dropdown:hover .dropdown-menu {
    max-height: 0;
  }

  .dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 300px;
    background: var(--color-gray-100);
    border-top: 2px solid var(--color-green);
    margin-top: 0.25rem;
    padding: 0.2rem 0 0.2rem 1rem;
    border-radius: 4px;
  }

  .dropdown.open .dropdown-menu a {
    padding: 0.15rem 1rem;
    line-height: 1.35;
  }

  .hero-cta-banner {
    display: block;
    margin-top: 0;
    padding-top: 0.75rem;
  }

  /* Welcome 50/50 - stack on mobile: image on top, then content */
  .welcome-split .welcome-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "content";
    max-width: 100%;
  }

  .welcome-image {
    width: 100%;
    max-width: 100vw;
    aspect-ratio: 4 / 3;
    min-height: 200px;
    overflow: hidden;
  }

  .welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .welcome-split .welcome-content {
    grid-area: content;
    padding: 2rem 1.5rem;
  }

  /* Hero split - stack on mobile: image on top, then text */
  .hero {
    margin-top: 0;
    padding: 0;
  }

  .hero-split {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "contact";
    min-height: auto;
    margin-top: 0;
    padding-top: 0;
  }

  .hero-left {
    padding: 2rem 1.5rem;
  }

  .hero-tagline {
    font-size: clamp(1.5rem, 4vw + 1.25rem, 2.5rem);
  }

  .hero-right {
    min-height: 220px;
    margin-top: 0;
    padding-top: 0;
  }

  /* Ensure header and hero touch - remove any gap */
  .header + .hero {
    margin-top: -32px;
  }

  .hero-banner {
    min-height: 220px;
  }

  .btn-hero {
    width: auto;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .trust-title {
    font-size: 1.25rem;
  }

  .welcome h2,
  .welcome-heading,
  .services h2,
  .contact h2,
  .seo-content h2,
  .portfolio h2,
  .reviews-cta h2,
  .trust-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .seo-block h2 {
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-buttons {
    flex-direction: column;
  }

  .trust-buttons a,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Process flow - vertical stack on mobile with down arrows */
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .process-step {
    max-width: 100%;
    width: 100%;
  }

  .process-connector {
    width: 24px;
    height: 44px;
    padding: 0.25rem 0;
  }

  .process-arrow {
    width: 24px;
    height: 44px;
    transform: rotate(90deg);
  }

  .hero,
  .trust-badges,
  .welcome,
  .services,
  .seo-content,
  .portfolio,
  .reviews-cta,
  .contact {
    padding: 2rem 0;
  }

  /* Contact page - stack on mobile */
  .contact-hero-inner {
    flex-direction: column;
  }

  .contact-hero-content {
    text-align: center;
  }

  .contact-hero-image img {
    min-height: 120px;
  }

  .contact-hero-content {
    grid-area: content;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    gap: 0.5rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .tagline {
    font-size: 0.85rem;
  }

  .hero-logo {
    max-width: 280px;
  }

  .hero-tagline {
    font-size: clamp(1.25rem, 3.5vw + 1rem, 2rem);
  }

  .trust-title {
    font-size: 1.15rem;
  }
}

/* ========== Bathroom Service Page ========== */
.bathroom-hero {
  padding: var(--section-padding);
  background: var(--color-off-white);
  border-top: 4px solid var(--color-yellow);
}

.bathroom-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content image";
  gap: 0;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.bathroom-hero-content {
  padding: 2rem 3rem;
  grid-area: content;
}

.bathroom-hero-image {
  grid-area: image;
  overflow: hidden;
  min-height: 320px;
}

.bathroom-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.bathroom-hero h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-green-dark);
  margin: 0 0 1rem;
}

.bathroom-hero-lead {
  font-size: 1.1rem;
  color: var(--color-slate);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.bathroom-upgrade,
.bathroom-before-after,
.bathroom-testimonials,
.bathroom-faq,
.bathroom-cta {
  padding: var(--section-padding);
}

.bathroom-upgrade {
  border-top: 4px solid var(--color-green);
}

.bathroom-upgrade-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image content";
  gap: 0;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.bathroom-upgrade-image {
  grid-area: image;
  overflow: hidden;
  min-height: 360px;
}

.bathroom-upgrade-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.bathroom-upgrade-image--collage {
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bathroom-upgrade-image--collage img {
  object-fit: contain;
  height: auto;
  max-height: 520px;
  min-height: 280px;
}

.bathroom-upgrade-content {
  grid-area: content;
  padding: 2rem 3rem;
}

.bathroom-upgrade-content .bathroom-materials {
  margin: 0;
}

.bathroom-before-after {
  background: var(--color-off-white);
  border-top: 4px solid var(--color-yellow);
}

.bathroom-testimonials {
  border-top: 4px solid var(--color-green);
}

.bathroom-faq {
  background: var(--color-off-white);
  border-top: 4px solid var(--color-yellow);
}

.bathroom-cta {
  border-top: 4px solid var(--color-green);
  text-align: center;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--color-slate);
  margin: 0 0 1.5rem;
  max-width: 700px;
}

.bathroom-upgrade h2,
.bathroom-before-after h2,
.bathroom-testimonials h2,
.bathroom-faq h2,
.bathroom-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-green-dark);
  margin: 0 0 0.5rem;
}

.bathroom-materials h3 {
  font-size: 1.2rem;
  color: var(--color-green-dark);
  margin: 0 0 0.5rem;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.materials-grid li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.materials-grid li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.bathroom-upgrade-content .materials-grid li a {
  color: var(--color-green-dark);
  font-weight: 600;
  text-decoration: none;
}

.bathroom-upgrade-content .materials-grid li a:hover {
  color: var(--color-green);
  text-decoration: underline;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.before-after-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.before-after-item a,
.lightbox-trigger {
  display: block;
  cursor: zoom-in;
  text-decoration: none;
  touch-action: manipulation;
}

.before-after-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.before-after-item a:hover img {
  opacity: 0.95;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-caption {
  color: white;
  margin: 1rem 0 0;
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.before-after-item.placeholder .placeholder-box {
  height: 220px;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate-light);
  font-size: 0.9rem;
}

.ba-label {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: var(--color-green);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid var(--color-green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin: 0;
}

.testimonial p {
  margin: 0 0 0.75rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial footer {
  font-size: 0.9rem;
  color: var(--color-slate-light);
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: 6px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--color-green-dark);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  border-top: 1px solid var(--color-gray-200);
  padding-top: 1rem;
  margin-top: 0;
}

.bathroom-cta p {
  margin: 0 0 1rem;
}

/* Bathroom page mobile */
@media (max-width: 900px) {
  .bathroom-hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "content";
  }

  .bathroom-hero-content {
    padding: 2rem 1.5rem;
  }

  .bathroom-hero-image {
    min-height: 260px;
  }

  .bathroom-hero-image img {
    min-height: 260px;
  }

  .bathroom-upgrade-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "content";
  }

  .bathroom-upgrade-image {
    min-height: 280px;
  }

  .bathroom-upgrade-image img {
    min-height: 280px;
  }

  .bathroom-upgrade-image--collage img {
    max-height: 420px;
    min-height: 240px;
  }

  .bathroom-upgrade-content {
    padding: 2rem 1.5rem;
  }

  .bathroom-upgrade h2,
  .bathroom-before-after h2,
  .bathroom-testimonials h2,
  .bathroom-faq h2,
  .bathroom-cta h2 {
    text-align: center;
  }

  .bathroom-before-after .container,
  .bathroom-testimonials .container,
  .bathroom-cta .container {
    text-align: center;
  }

  .bathroom-before-after .btn-secondary,
  .bathroom-cta .btn-primary {
    display: inline-block;
  }
}
