/* Daly Aluminum - JD Excavation Style Design */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-red: #C41E3A;
  --primary-green: #2D7A4A;
  --dark-bg: #1a1a1a;
  --light-bg: #f5f5f5;
  --text-dark: #333;
  --text-light: #fff;
  --border-light: #e0e0e0;
}

body {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: #fff;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 3px solid var(--primary-green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
  background: var(--primary-green);
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-dark);
}

.header-nav {
  display: flex;
  gap: 15px;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.header-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 13px;
  transition: color 0.3s;
}

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

/* DROPDOWN MENUS */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  display: inline-block;
  cursor: pointer;
}

.nav-dropdown-toggle {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 13px;
  transition: color 0.3s;
}

.nav-dropdown-toggle:hover {
  color: var(--primary-green);
}

.nav-dropdown-toggle::after {
  content: "▾";
  display: inline-block;
  margin-left: 5px;
  color: currentColor;
  font-size: 11px;
  line-height: 1;
  vertical-align: 1px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: translateY(1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: 3px solid var(--primary-green);
  min-width: 220px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  display: none;
  flex-direction: column;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-top: -8px;
  padding-top: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.nav-dropdown-menu a:last-child {
  border-bottom: none;
}

.nav-dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--primary-green);
  padding-left: 24px;
}

.header-right {
  text-align: right;
}

.header-phone-label {
  font-size: 11px;
  color: #666;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.header-phone {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-red);
  text-decoration: none;
}

.header-cta {
  display: inline-block;
  background: var(--primary-red);
  color: #fff;
  padding: 10px 20px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s;
}

.header-cta:hover {
  background: #a01830;
}

/* SERVICE TABS */
.service-tabs {
  display: flex;
  background: var(--primary-green);
  padding: 0;
  margin: 0;
  border-top: 1px solid #ddd;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0;
}

.service-tab {
  flex: 0 1 calc(25% - 0px);
  padding: 15px 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.service-tab:hover {
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}

.service-tab.active {
  background: #fff;
  color: var(--primary-green);
  font-weight: bold;
}

.service-tab.cta-button {
  background: var(--primary-red);
  color: #fff;
}

.service-tab.cta-button:hover {
  background: #a01830;
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 60px 80px;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .btn {
  min-width: 170px;
  text-align: center;
}

.hero-service {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
}

.hero-service:hover {
  background: #24643d;
  border-color: #24643d;
  color: #fff;
}

.hero-estimate {
  background: var(--primary-red);
  color: #fff;
  border-color: var(--primary-red);
}

.hero-estimate:hover {
  background: #a01830;
  border-color: #a01830;
  color: #fff;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: inline-flex;
  width: 48px;
  height: 64px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(45, 122, 74, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-nav:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
}

.hero-nav.prev {
  left: 20px;
}

.hero-nav.next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--primary-green);
}

/* TRUST BAR */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark-bg);
  color: #fff;
  padding: 15px 20px;
  text-align: center;
}

.trust-item {
  padding: 5px;
}

.trust-number {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-green);
  margin-bottom: 2px;
}

.trust-label {
  font-size: 11px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* YEARS SECTION */
.years-section {
  position: relative;
  padding: 80px 40px;
  background: var(--light-bg);
  overflow: hidden;
}

.years-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.years-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
  text-transform: uppercase;
}

.years-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.years-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transform: rotate(-3deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.years-images img:nth-child(2) {
  transform: rotate(2deg);
}

.years-images img:nth-child(3) {
  transform: rotate(-2deg);
}

.years-images img:nth-child(4) {
  transform: rotate(3deg);
}

/* Mobile years story: readable project photography in an aluminum-frame grid. */
@media (max-width: 768px) {
  .years-section {
    padding: 56px 20px 64px;
  }

  .years-content h2 {
    max-width: 360px;
    margin: 0 auto 30px;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .years-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 520px;
    margin: 0 auto 32px;
  }

  .years-images img,
  .years-images img:nth-child(2),
  .years-images img:nth-child(3),
  .years-images img:nth-child(4) {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    transform: none;
    border: 4px solid #fff;
    border-bottom-color: var(--primary-green);
    border-radius: 2px;
    box-shadow: 0 8px 20px rgba(19, 45, 31, 0.16);
  }
}

@media (max-width: 420px) {
  .years-section {
    padding-inline: 16px;
  }

  .years-content h2 {
    max-width: 320px;
    font-size: 29px;
  }

  .years-images {
    gap: 10px;
  }
}

/* WHY CHOOSE */
.why-choose {
  padding: 80px 40px;
  background: #fff;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.why-choose-intro {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.feature {
  padding: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  margin: 0 auto 15px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary-green);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon svg[fill="currentColor"] {
  fill: var(--primary-green);
}

.feature-title {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.4;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 40px;
  background: var(--light-bg);
}

.cta-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.cta-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-image-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.cta-image-card:hover img {
  transform: scale(1.05);
}

.cta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.cta-overlay h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-red);
  color: #fff;
}

.btn-primary:hover {
  background: #a01830;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--primary-red);
  color: #fff;
  border-color: var(--primary-red);
}

.btn-secondary:hover {
  background: transparent;
  color: var(--primary-red);
}

/* ABOUT PAGE IMAGE ROWS */
.about-image-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.about-image-row img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* FOOTER */
.footer {
  background: var(--dark-bg);
  color: #fff;
  padding: 60px 40px 30px;
}

.footer-top {
  text-align: center;
  padding: 40px 0;
  margin-bottom: 40px;
  background: #fff;
  color: var(--text-dark);
  margin-left: -40px;
  margin-right: -40px;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 0;
}

.footer-top h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.footer-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.phone-label {
  font-size: 12px;
  color: #666;
}

.footer-phone a {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-red);
  text-decoration: none;
}

.phone-subtext {
  font-size: 13px;
  color: #666;
  font-style: italic;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  padding-top: 40px;
  border-top: 3px solid var(--primary-green);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary-red);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.footer-logo p {
  font-size: 12px;
  color: #999;
}

.footer-contact h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-contact a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-red);
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-contact p {
  font-size: 13px;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-main {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }

  .header-nav {
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
  }

  .service-tabs {
    flex-wrap: wrap;
  }

  .service-tab {
    flex: 1 1 50%;
    font-size: 11px;
    padding: 12px 10px;
  }

  .hero-slider {
    height: 400px;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-width: 0;
    padding: 12px 18px;
    font-size: 11px;
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cta-images {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }
}


/* ===== CONTENT SECTIONS (for inner pages) ===== */
.content-section {
  padding: 60px 20px;
  background: #fff;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-container h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--text-dark);
  border-bottom: 3px solid var(--primary-green);
  padding-bottom: 20px;
}

.content-container h2 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.content-container h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--primary-green);
}

/* SERVICE PAGE LAYOUT */
.service-page-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-main {
  grid-column: 1;
}

.service-main p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.service-main ul {
  list-style-position: inside;
  margin-bottom: 30px;
  padding-left: 20px;
}

.service-main li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--text-dark);
}

.service-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.service-image-row img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* FAQ ACCORDION */
.faq-accordion {
  margin: 40px 0;
}

.faq-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: #f5f5f5;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #efefef;
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-green);
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* SERVICE SIDEBAR */
.service-sidebar {
  grid-column: 2;
  position: sticky;
  top: 20px;
}

.sidebar-cta {
  background: var(--primary-green);
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
}

.sidebar-cta h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 15px;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  font-size: 14px;
}

/* Contrast safeguard: these CTA cards sit inside broad page containers whose
   paragraph rules appear later in the cascade. Keep supporting copy readable
   on Daly green across every service and generated location page. */
.service-page-layout .service-sidebar .sidebar-cta p,
.location-page .service-sidebar .sidebar-cta p {
  color: #fff;
}

.sidebar-cta .btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--primary-red);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease;
  font-size: 14px;
}

.sidebar-cta .btn:hover {
  background: #a01830;
}

/* QA: Service and city sidebars now route estimate requests to Contact instead of embedding GHL forms. */
.sidebar-cta .cta-button,
.sidebar-cta .btn,
.service-sidebar .phone-cta,
.service-sidebar .estimate-cta {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .03em;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.sidebar-cta .cta-button,
.sidebar-cta .btn-primary,
.service-sidebar .phone-cta {
  background: var(--primary-red);
  color: #fff;
}

.sidebar-cta .cta-button:hover,
.sidebar-cta .btn-primary:hover,
.service-sidebar .phone-cta:hover {
  background: #a01830;
  color: #fff;
}

.sidebar-cta .btn-estimate,
.sidebar-cta .estimate-cta,
.service-sidebar .estimate-cta {
  margin-top: 12px;
  background: #fff;
  color: var(--primary-green);
  border: 2px solid #fff;
}

.sidebar-cta .btn-estimate:hover,
.sidebar-cta .estimate-cta:hover,
.service-sidebar .estimate-cta:hover {
  background: #e9f4ed;
  color: var(--primary-green);
  border-color: #e9f4ed;
}

.service-sidebar .sidebar-box {
  background: var(--primary-green);
  color: #fff;
  padding: 26px;
  border-radius: 8px;
  margin-bottom: 24px;
  text-align: center;
}

.service-sidebar .sidebar-box h3,
.service-sidebar .sidebar-box p {
  color: #fff;
}

.service-sidebar .sidebar-box .sidebar-text,
.service-sidebar .sidebar-box .sidebar-subtext {
  color: rgba(255, 255, 255, .88);
}

.ghl-form-container {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  min-height: 500px;
}

.sidebar-info {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

.sidebar-info h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.sidebar-info ul {
  list-style: none;
  padding: 0;
}

.sidebar-info li {
  margin-bottom: 10px;
}

.sidebar-info a {
  color: var(--primary-green);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.sidebar-info a:hover {
  color: var(--primary-red);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-page-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-sidebar {
    grid-column: 1;
    position: static;
  }
  
  .service-image-row {
    grid-template-columns: 1fr;
  }
  
  .content-container h1 {
    font-size: 32px;
  }
  
  .content-container h2 {
    font-size: 22px;
  }
}

.content-container p {
  margin-bottom: 15px;
  color: #555;
  font-size: 16px;
}

.content-container ul {
  margin-left: 30px;
  margin-bottom: 20px;
}

.content-container li {
  margin-bottom: 12px;
  color: #555;
  font-size: 16px;
}

.content-container strong {
  color: var(--primary-green);
}

/* FEATURE BOXES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-box {
  background: #f9f9f9;
  padding: 30px;
  border-left: 4px solid var(--primary-green);
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-green);
}

.feature-box p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* GHL FORM SECTION */
.ghl-section {
  margin: 40px 0;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 4px;
  min-height: 750px;
}

.ghl-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-green);
  transition: all 0.3s ease;
}

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

.service-card h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-green);
}

.service-card h3 a {
  color: var(--primary-green);
  text-decoration: none;
}

.service-card h3 a:hover {
  text-decoration: underline;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin: 15px 0;
}

.services-cta {
  background: linear-gradient(135deg, var(--primary-green) 0%, #1f5a35 100%);
  color: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
}

.services-cta h2 {
  margin-top: 0;
  font-size: 28px;
  color: white;
}

.services-cta p {
  font-size: 16px;
  margin: 15px 0 25px 0;
}

/* DALY RESIDENTIAL CONTACT + PROJECTS PAGES
   Design reminder: calm white space, Daly green structure, red action cues,
   left-aligned editorial copy, and no decorative clutter. */
.contact-page,
.projects-page {
  background: #f5f7f4;
  min-height: 100vh;
}

.contact-hero {
  background: linear-gradient(135deg, #eff6f0 0%, #ffffff 68%);
  border-bottom: 1px solid #dfe8df;
  padding: 72px 24px 58px;
}

.contact-shell,
.projects-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.contact-hero h1,
.projects-hero h1 {
  color: #202d25;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 22px;
  max-width: 720px;
}

.contact-hero .lead,
.projects-hero .lead {
  color: #55635a;
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 650px;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.contact-hero-actions a:hover {
  transform: translateY(-2px);
}

.contact-hero-actions .primary-action {
  background: var(--primary-red);
  color: #fff;
}

.contact-hero-actions .primary-action:hover {
  background: #a01830;
}

.contact-hero-actions .secondary-action {
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  background: transparent;
}

.contact-hero-actions .secondary-action:hover {
  background: var(--primary-green);
  color: #fff;
}

.contact-highlight {
  background: var(--primary-green);
  color: #fff;
  padding: 30px;
  border-left: 6px solid var(--primary-red);
  box-shadow: 0 16px 35px rgba(45, 122, 74, .18);
}

.contact-highlight h2 {
  color: #fff;
  font-size: 23px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.contact-highlight p {
  color: rgba(255,255,255,.84);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.contact-highlight a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.contact-content {
  padding: 64px 24px 78px;
}

.contact-content-grid {
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
  gap: 44px;
  align-items: start;
}

.contact-details h2,
.contact-form-card h2,
.contact-next h2 {
  color: #202d25;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-details > p {
  color: #5b665f;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.contact-detail-list {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.contact-detail {
  border-left: 3px solid var(--primary-green);
  padding: 4px 0 4px 16px;
}

.contact-detail strong {
  color: #26352b;
  display: block;
  font-size: 12px;
  letter-spacing: .8px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail span {
  color: #5b665f;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--primary-green);
}

.contact-next {
  border-top: 1px solid #dfe8df;
  padding-top: 26px;
}

.contact-next h2 {
  font-size: 22px;
}

.contact-next ol {
  color: #5b665f;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  padding-left: 20px;
}

.contact-next li + li {
  margin-top: 8px;
}

.contact-form-card {
  background: #fff;
  border-top: 5px solid var(--primary-green);
  box-shadow: 0 12px 34px rgba(26, 44, 31, .11);
  padding: 30px;
}

.contact-form-card .form-intro {
  color: #667269;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.contact-form-card iframe {
  display: block;
  width: 100%;
  min-height: 940px;
  border: 0;
}

.projects-hero {
  background: linear-gradient(135deg, #eff6f0 0%, #ffffff 72%);
  border-bottom: 1px solid #dfe8df;
  padding: 66px 24px 46px;
}

.projects-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 14px;
}

.projects-hero .lead {
  margin-bottom: 0;
}

.projects-content {
  padding: 58px 24px 76px;
}

.projects-widget {
  background: #fff;
  border-top: 5px solid var(--primary-green);
  box-shadow: 0 12px 34px rgba(26, 44, 31, .1);
  min-height: 520px;
  padding: 30px;
}

.projects-widget h2 {
  color: #202d25;
  font-size: 27px;
  margin-bottom: 10px;
}

.projects-widget > p {
  color: #667269;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .contact-hero-grid,
  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-highlight {
    max-width: 620px;
  }
}

@media (max-width: 600px) {
  .contact-hero,
  .contact-content,
  .projects-hero,
  .projects-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-hero {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .contact-hero h1,
  .projects-hero h1 {
    font-size: 40px;
  }

  .contact-hero .lead,
  .projects-hero .lead {
    font-size: 16px;
  }

  .contact-highlight,
  .contact-form-card,
  .projects-widget {
    padding: 22px;
  }

  .contact-form-card iframe {
    min-height: 1080px;
  }
}

/* MXC CONTACT REFERENCE ADAPTATION
   Keep the reference structure: compact dark overlay header, cinematic hero,
   centered quote headline, dark two-column form/contact section, and dense footer.
   Daly adaptation: green structure, red CTA/highlight, residential copy, no emojis. */
.contact-reference {
  background: #101312;
  color: #f4f6f3;
  font-family: Arial, sans-serif;
}

.contact-reference .header {
  position: absolute;
  inset: 0 0 auto;
  background: rgba(13, 17, 15, .88);
  border-bottom: 1px solid rgba(255,255,255,.14);
  box-shadow: none;
}

.contact-reference .header-top {
  display: none;
}

.contact-reference .header-main {
  max-width: 1440px;
  padding: 18px 34px;
}

.contact-reference .logo-text,
.contact-reference .header-nav a,
.contact-reference .nav-dropdown-toggle {
  color: #f4f6f3;
}

.contact-reference .header-nav a:hover,
.contact-reference .nav-dropdown-toggle:hover {
  color: #9bd2ad;
}

.contact-reference .header-phone-label {
  color: rgba(255,255,255,.68);
}

.contact-reference .header-phone {
  color: #9bd2ad;
  font-size: 17px;
}

.contact-reference .header-cta {
  background: var(--primary-red);
  border-radius: 0;
  margin-top: 5px;
  padding: 10px 17px;
}

.contact-reference .header-cta:hover {
  background: #e02a4d;
}

.contact-reference .nav-dropdown-menu {
  background: #171c19;
  border-color: #334139;
  border-top-color: var(--primary-green);
}

.contact-reference .nav-dropdown-menu a {
  color: #edf4ee;
}

.contact-reference .nav-dropdown-menu a:hover {
  background: #223128;
  color: #9bd2ad;
}

.contact-reference-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 130px 24px 78px;
  background-image: linear-gradient(rgba(8, 12, 9, .78), rgba(8, 12, 9, .9)), url('/images/manus/gduDgqPFCsUpMpay.jpg');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.contact-reference-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--primary-red);
}

.contact-reference-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  text-align: center;
}

.reference-kicker {
  color: #9bd2ad;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.contact-reference-hero h1 {
  color: #fff;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: .98;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-reference-hero h1 span {
  color: var(--primary-red);
}

.contact-reference-hero p:last-child {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-reference-body {
  background: #101312;
  padding: 72px 28px 88px;
}

.contact-reference-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 72px;
  align-items: start;
  margin: 0 auto;
}

.reference-form-panel {
  min-width: 0;
}

.reference-form-panel h2,
.reference-contact-card h2 {
  color: #f6f7f6;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -.6px;
  line-height: 1.05;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.reference-form-panel h2::after,
.reference-contact-card h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--primary-red);
  margin-top: 18px;
}

.reference-form-panel > p {
  color: #aeb8b0;
  font-size: 14px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}

.reference-form-wrap {
  background: #fff;
  border: 1px solid rgba(255,255,255,.12);
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.reference-form-wrap .dcms_form {
  min-height: 760px;
}

.reference-form-wrap iframe {
  display: block;
  width: 100%;
  height: 1100px;
  min-height: 1100px;
  border: 0;
  background: #fff;
}

.reference-contact-card {
  background: #171b19;
  border: 1px solid rgba(255,255,255,.15);
  padding: 26px 24px;
  position: sticky;
  top: 24px;
}

.reference-contact-card h2 {
  font-size: 24px;
  line-height: 1.25;
}

.reference-contact-card > p {
  color: #aeb8b0;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.reference-contact-list {
  display: grid;
  gap: 18px;
}

.reference-contact-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 13px;
  align-items: start;
}

.reference-contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--primary-red);
  color: #fff;
}

.reference-contact-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.reference-contact-item strong {
  color: #99a69b;
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.reference-contact-item a,
.reference-contact-item span {
  color: #f3f6f3;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
}

.reference-contact-item a:hover {
  color: #9bd2ad;
}

.contact-reference .footer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 52px;
}

.contact-reference .footer-content {
  border-top-color: var(--primary-green);
}

.contact-reference .footer-col ul li a:hover {
  color: #9bd2ad;
}

@media (max-width: 950px) {
  .contact-reference .header-main {
    padding: 16px 20px;
  }

  .contact-reference-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .reference-contact-card {
    position: static;
    max-width: 520px;
  }
}

@media (max-width: 700px) {
  .contact-reference .header {
    position: relative;
  }

  .contact-reference .header-main {
    flex-wrap: wrap;
    gap: 16px;
  }

  .contact-reference .header-left {
    flex: 1 1 100%;
  }

  .contact-reference .header-nav {
    order: 3;
    flex: 1 1 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
    white-space: nowrap;
  }

  .contact-reference .header-right {
    position: absolute;
    top: 18px;
    right: 18px;
  }

  .contact-reference .header-phone-label {
    display: none;
  }

  .contact-reference .header-phone {
    font-size: 15px;
  }

  .contact-reference .header-cta {
    display: none;
  }

  .contact-reference-hero {
    min-height: 470px;
    padding: 64px 18px 58px;
  }

  .contact-reference-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
    letter-spacing: -1px;
  }

  .contact-reference-hero p:last-child {
    font-size: 11px;
    line-height: 1.5;
  }

  .contact-reference-body {
    padding: 52px 16px 64px;
  }

  .reference-form-wrap {
    padding: 0;
    min-height: 0;
  }

  .reference-form-wrap iframe {
    height: 1040px;
    min-height: 1040px;
  }
}

/* Daly Contact retheme: keep the reference page composition, but use Daly's
   green structure, red action color, white surfaces, and charcoal contrast. */
.contact-reference {
  background: #f4f6f4;
  color: var(--text-dark);
}

.contact-reference .header {
  position: sticky;
  inset: auto;
  background: #fff;
  border-bottom: 3px solid var(--primary-green);
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

.contact-reference .header-top {
  display: block;
  background: var(--primary-green);
  color: #fff;
}

.contact-reference .header-main {
  background: #fff;
}

.contact-reference .logo-text,
.contact-reference .header-nav a,
.contact-reference .nav-dropdown-toggle {
  color: #333;
}

.contact-reference .header-nav a:hover,
.contact-reference .nav-dropdown-toggle:hover {
  color: var(--primary-green);
}

.contact-reference .header-phone-label {
  color: #666;
}

.contact-reference .header-phone {
  color: var(--primary-red);
}

.contact-reference .header-cta {
  background: var(--primary-red);
  color: #fff;
  border-radius: 0;
}

.contact-reference .header-cta:hover {
  background: #a01830;
}

.contact-reference .nav-dropdown-menu {
  background: #fff;
  border-color: #ddd;
  border-top-color: var(--primary-green);
}

.contact-reference .nav-dropdown-menu a {
  color: #333;
}

.contact-reference .nav-dropdown-menu a:hover {
  background: #f0f5f1;
  color: var(--primary-green);
}

.contact-reference-hero {
  min-height: 500px;
  padding: 92px 24px 74px;
  background-image:
    linear-gradient(rgba(26,26,26,.77), rgba(26,26,26,.84)),
    linear-gradient(rgba(45,122,74,.26), rgba(45,122,74,.26)),
    url('/images/manus/gduDgqPFCsUpMpay.jpg');
  border-bottom: 4px solid var(--primary-red);
}

.contact-reference-hero::after {
  display: none;
}

.reference-kicker {
  color: #a8d4b4;
}

.contact-reference-hero h1 span {
  color: var(--primary-red);
}

.contact-reference-body {
  background: #f4f6f4;
  padding: 64px 28px 78px;
}

.reference-form-panel h2,
.reference-contact-card h2 {
  color: #2d2d2d;
}

.reference-form-panel h2::after,
.reference-contact-card h2::after {
  background: var(--primary-red);
}

.reference-form-panel > p {
  color: #5c655f;
}

.reference-form-wrap {
  background: #fff;
  border: 1px solid #d7e1d9;
  box-shadow: 0 12px 30px rgba(26,26,26,.1);
}

.reference-contact-card {
  background: var(--primary-green);
  border: 0;
  border-left: 6px solid var(--primary-red);
  box-shadow: 0 12px 30px rgba(45,122,74,.18);
}

.reference-contact-card h2 {
  color: #fff;
}

.reference-contact-card > p {
  color: rgba(255,255,255,.82);
}

.reference-contact-icon {
  background: var(--primary-red);
}

.reference-contact-item strong {
  color: #cce5d2;
}

.reference-contact-item a,
.reference-contact-item span {
  color: #fff;
}

.reference-contact-item a:hover {
  color: #d9f0df;
}

.contact-reference .footer {
  border-top: 3px solid var(--primary-green);
}

@media (max-width: 700px) {
  .contact-reference .header {
    position: relative;
  }

  .contact-reference .header-top {
    font-size: 10px;
    line-height: 1.35;
    padding: 7px 14px;
  }

  .contact-reference-hero {
    min-height: 430px;
    padding: 68px 18px 58px;
  }

  .contact-reference-body {
    padding: 48px 16px 60px;
  }

  .reference-contact-card {
    border-left-width: 4px;
  }
}

/* Header logo scale: use the supplied higher-resolution Daly mark and give it
   enough rendered width to read clearly beside the wordmark. */
.header-main .logo img,
.header-left .logo img {
  content: url("/images/daly-logo-upscaled_8f64672c.png");
  display: block;
  width: 156px;
  height: 82px;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.header-main .logo,
.header-left .logo {
  gap: 15px;
}

@media (max-width: 768px) {
  .header-main .logo img,
  .header-left .logo img {
    width: 132px;
    height: 70px;
  }
}

/* Compact Wilson-style header actions: Daly’s phone and estimate CTA sit side by
   side instead of using a tall explanatory contact block. */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  text-align: right;
  white-space: nowrap;
}

.header-phone-label,
.header-right .header-tagline {
  display: none !important;
}

.header-right .header-phone,
.header-right .header-phone a {
  display: inline-flex;
  align-items: center;
  color: var(--primary-red);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.header-right .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 0;
  padding: 0 16px;
  background: var(--primary-red);
  color: #fff;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.35px;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-right .header-cta:hover {
  background: #a01830;
  transform: translateY(-1px);
}

@media (max-width: 1020px) {
  .header-main {
    padding-left: 22px;
    padding-right: 22px;
  }

  .header-right {
    gap: 8px;
  }

  .header-right .header-phone,
  .header-right .header-phone a {
    font-size: 15px;
  }

  .header-right .header-cta {
    min-height: 38px;
    padding: 0 11px;
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .header-right {
    width: 100%;
    justify-content: center;
    order: 3;
  }

  .header-right .header-phone,
  .header-right .header-phone a {
    font-size: 16px;
  }
}

/* Keep the Contact page aligned with the shared compact header. Its earlier
   reference-layout rules positioned the phone absolutely and hid the CTA on
   mobile, which caused overlap after the Wilson-style header simplification. */
.contact-reference .header-right {
  position: static !important;
  width: auto;
}

@media (max-width: 700px) {
  .contact-reference .header-right {
    width: 100%;
    justify-content: center;
    order: 4;
    margin-top: 2px;
  }

  .contact-reference .header-right .header-cta {
    display: inline-flex !important;
  }
}

/* LIVE AUTHENTIC REVIEWS — verified Google-sourced content in the client-provided GHL widget, framed with Daly green/red. */
.reviews-section {
  padding: 88px 40px 84px;
  background: #f5f7f4;
  border-top: 5px solid var(--primary-green);
  text-align: center;
}

.reviews-heading {
  max-width: 780px;
  margin: 0 auto 38px;
}

.reviews-heading .eyebrow {
  margin: 0 0 12px;
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.reviews-heading h2 {
  margin: 0 0 14px;
  color: var(--text-dark);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.reviews-heading > p:last-child {
  margin: 0;
  color: #5a625c;
  font-size: 15px;
  line-height: 1.7;
}

.reviews-widget-shell {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto 24px;
  padding: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce4de;
  border-top: 5px solid var(--primary-green);
  box-shadow: 0 16px 36px rgba(24, 35, 27, 0.1);
  text-align: left;
}

.reviews-widget-loading {
  position: absolute;
  inset: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 350px;
  padding: 28px;
  background: #fff;
  color: #536159;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
}

.reviews-widget-shell.is-loaded .reviews-widget-loading {
  display: none;
}

.reviews-widget-shell .lc_reviews_widget {
  display: block;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 390px;
  border: 0;
  background: #fff;
}

.reviews-widget-fallback {
  margin: 16px;
  color: #5a625c;
  text-align: center;
}

.reviews-source-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
}

.reviews-source-link:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 58px 20px 56px;
  }

  .reviews-heading h2 {
    font-size: 28px;
  }

  .reviews-widget-shell {
    padding: 8px;
    margin-bottom: 20px;
  }

  .reviews-widget-loading {
    inset: 8px;
    min-height: 480px;
  }

  .reviews-widget-shell .lc_reviews_widget {
    min-height: 520px;
  }
}

/* HOMEPAGE FAQ — a calm, scannable residential information block with Daly green structure and red action accent. */
.homepage-faq {
  padding: 82px 40px 86px;
  background: #fff;
  border-top: 1px solid #dce7df;
  text-align: center;
}

.homepage-faq-heading {
  max-width: 760px;
  margin: 0 auto 36px;
}

.homepage-faq-heading .eyebrow {
  margin: 0 0 12px;
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.homepage-faq-heading h2 {
  margin: 0 0 14px;
  color: var(--text-dark);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: none;
}

.homepage-faq-heading > p:last-child {
  margin: 0;
  color: #5a625c;
  font-size: 15px;
  line-height: 1.7;
}

.homepage-faq-heading::after {
  display: block;
  width: 74px;
  height: 6px;
  margin: 26px auto 0;
  border-top: 2px solid var(--primary-green);
  border-bottom: 2px solid var(--primary-red);
  content: "";
}

.homepage-faq .faq-section {
  max-width: 940px;
  margin: 0 auto;
  text-align: left;
}

.homepage-faq .faq-item {
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(24, 35, 27, 0.05);
}

.homepage-faq .faq-question {
  min-height: 58px;
  color: var(--text-dark);
  font-weight: 800;
}

.homepage-faq .faq-answer {
  color: #4f5c52;
  font-size: 15px;
  line-height: 1.7;
}

.homepage-faq-cta {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .homepage-faq {
    padding: 58px 20px 62px;
  }

  .homepage-faq-heading h2 {
    font-size: 28px;
  }

  .homepage-faq .faq-question {
    min-height: 54px;
    padding: 16px 18px;
    font-size: 14px;
  }

  .homepage-faq .faq-answer {
    padding: 17px 18px;
    font-size: 14px;
  }
}

/* EDITORIAL CONTENT PAGES — structured homeowner guidance with Daly green authority, red action accents, and a restrained linear frame motif. */
.editorial-page {
  background: #f7f8f5;
  color: var(--text-dark);
}

.editorial-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 2px;
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.editorial-page .btn:hover {
  color: #fff !important;
  transform: translateY(-2px);
}

.editorial-page .btn-red {
  background: var(--primary-red);
}

.editorial-page .btn-red:hover {
  background: #a01830;
}

.editorial-page .btn-green {
  background: var(--primary-green);
}

.editorial-page .btn-green:hover {
  background: #225d39;
}

.editorial-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 30px 84px;
  background: linear-gradient(115deg, rgba(26, 38, 29, 0.96), rgba(45, 122, 74, 0.88)), url("/images/manus/kZcEZwCftLMYqgQw.jpg") center/cover;
  color: #fff;
}

.editorial-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.editorial-hero .eyebrow,
.eyebrow {
  margin: 0 0 13px;
  color: var(--primary-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.editorial-hero .eyebrow {
  color: #b8d6bf;
}

.editorial-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.03;
  text-transform: none;
}

.editorial-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: #edf5ef;
  font-size: 18px;
  line-height: 1.65;
}

.content-container.blog-index-container,
.content-container.article-container,
.content-container.legal-container {
  max-width: 1120px;
  padding-top: 76px;
  padding-bottom: 86px;
}

.section-intro {
  max-width: 750px;
  margin: 0 0 38px;
}

.section-intro h2,
.article-copy h2,
.legal-container h2,
.article-end-cta h2 {
  color: var(--text-dark);
  font-size: 30px;
  line-height: 1.2;
  text-transform: none;
}

.section-intro p:last-child,
.article-copy p,
.article-copy li,
.legal-container p,
.legal-container li {
  color: #4e5a51;
  font-size: 16px;
  line-height: 1.8;
}

.blog-grid-daly {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card-daly {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe8e1;
  border-bottom: 5px solid var(--primary-green);
  box-shadow: 0 12px 26px rgba(24, 35, 27, 0.08);
}

.blog-card-daly-image {
  display: block;
  height: 210px;
  overflow: hidden;
}

.blog-card-daly-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.blog-card-daly:hover .blog-card-daly-image img {
  transform: scale(1.04);
}

.blog-card-daly-body {
  padding: 25px 24px 28px;
}

.blog-card-daly-body h2 {
  margin: 8px 0 12px;
  font-size: 23px;
  line-height: 1.2;
  text-transform: none;
}

.blog-card-daly-body h2 a {
  color: var(--text-dark);
  text-decoration: none;
}

.blog-card-daly-body h2 a:hover {
  color: var(--primary-green);
}

.blog-card-daly-body > p:not(.article-kicker):not(.article-date) {
  color: #5b665e;
  font-size: 14px;
  line-height: 1.65;
}

.article-kicker,
.article-date,
.article-byline,
.legal-updated {
  margin: 0;
  color: var(--primary-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.article-date {
  margin-top: 12px;
  color: #7b857e;
  letter-spacing: 0.7px;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
}

.text-link:hover {
  color: var(--primary-green);
}

.article-hero h1 {
  max-width: 850px;
}

.article-byline {
  color: #d9e9dd;
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: none;
}

.article-lead-image {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-bottom: 7px solid var(--primary-red);
}

.article-copy {
  max-width: 850px;
  margin: 50px auto 0;
}

.article-inline-image {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 6px;
  margin: 32px 0;
}

.article-copy h2 {
  margin: 44px 0 14px;
}

.article-copy h2:first-child {
  margin-top: 0;
}

.article-copy ul {
  margin: 8px 0 22px;
  padding-left: 23px;
}

.article-copy ol {
  margin: 8px 0 22px;
  padding-left: 23px;
}

.article-copy table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.94rem;
}

.article-copy th,
.article-copy td {
  padding: 13px;
  border: 1px solid rgba(20, 62, 50, 0.2);
  text-align: left;
  vertical-align: top;
}

.article-copy th {
  background: rgba(20, 62, 50, 0.08);
  color: #143e32;
}

.article-copy li {
  margin-bottom: 8px;
}

.article-copy a,
.legal-container a,
.article-source-note a {
  color: var(--primary-green);
  font-weight: 700;
}

.article-source-note {
  margin-top: 42px;
  padding: 18px 20px;
  border-left: 4px solid var(--primary-red);
  background: #eef4ef;
  font-size: 13px !important;
}

.article-end-cta,
.editorial-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 52px;
  padding: 30px 34px;
  background: var(--dark-bg);
  border-left: 7px solid var(--primary-green);
  color: #fff;
}

.article-end-cta h2,
.editorial-cta h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 28px;
}

.article-end-cta p,
.editorial-cta p {
  margin: 0;
  color: #d5e3d8;
  line-height: 1.6;
}

.legal-container {
  max-width: 900px !important;
}

.legal-updated {
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d8e2da;
}

.legal-container h2 {
  margin: 38px 0 12px;
}

.not-found-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 130px 30px 140px;
  text-align: left;
}

.not-found-mark {
  margin-bottom: 12px;
  color: var(--primary-red);
  font-size: clamp(84px, 15vw, 170px);
  font-weight: 900;
  letter-spacing: -8px;
  line-height: 0.8;
}

.not-found-content h1 {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--text-dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  text-transform: none;
}

.not-found-content > p:not(.eyebrow) {
  max-width: 680px;
  color: #566258;
  font-size: 18px;
  line-height: 1.7;
}

.not-found-actions,
.not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.not-found-links {
  gap: 22px;
  margin-top: 42px;
}

.not-found-links a {
  color: var(--primary-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-decoration: none;
  text-transform: uppercase;
}

.not-found-links a:hover {
  color: var(--primary-red);
}

@media (max-width: 850px) {
  .blog-grid-daly {
    grid-template-columns: 1fr;
  }

  .blog-card-daly-image {
    height: 240px;
  }

  .editorial-cta,
  .article-end-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .editorial-hero {
    padding: 72px 20px 66px;
  }

  .editorial-hero h1 {
    font-size: 42px;
  }

  .editorial-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .content-container.blog-index-container,
  .content-container.article-container,
  .content-container.legal-container {
    padding-top: 54px;
    padding-bottom: 62px;
  }

  .article-copy p,
  .article-copy li,
  .legal-container p,
  .legal-container li {
    font-size: 15px;
    line-height: 1.72;
  }

  .article-end-cta,
  .editorial-cta {
    padding: 25px 22px;
  }

  .not-found-content {
    padding: 92px 20px 100px;
  }
}

/* HOMEPAGE FEATURED SERVICES — four real project images, crisp Daly frames, and concise MORE actions. */
.homepage-services {
  padding: 76px 40px 82px;
  background: #f5f7f4;
  border-top: 1px solid #dce7df;
}

.homepage-services-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.homepage-services-heading h2 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-size: 36px;
  line-height: 1.14;
  text-transform: none;
}

.homepage-services-heading p:last-child {
  margin: 0;
  color: #5a625c;
  font-size: 15px;
  line-height: 1.7;
}

.homepage-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.homepage-service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e3d9;
  border-bottom: 5px solid var(--primary-green);
  box-shadow: 0 12px 26px rgba(24, 35, 27, 0.08);
}

.homepage-service-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.homepage-service-card-body {
  padding: 22px 21px 24px;
}

.homepage-service-card h3 {
  min-height: 48px;
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: 20px;
  line-height: 1.2;
}

.homepage-service-card p {
  min-height: 74px;
  margin: 0 0 17px;
  color: #5a625c;
  font-size: 14px;
  line-height: 1.6;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
}

.service-more span {
  font-size: 17px;
  line-height: 0.8;
  transition: transform 180ms ease;
}

.service-more:hover {
  color: var(--primary-green);
}

.service-more:hover span {
  transform: translateX(3px);
}

.floating-call-button {
  display: none;
}

@media (max-width: 980px) {
  .homepage-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .homepage-services {
    padding: 58px 20px 64px;
  }

  .homepage-services-heading h2 {
    font-size: 28px;
  }

  .homepage-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .homepage-service-card img {
    height: 210px;
  }

  .homepage-service-card h3,
  .homepage-service-card p {
    min-height: 0;
  }

  .floating-call-button {
    position: fixed;
    right: 18px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 15px;
    background: var(--primary-red);
    border: 2px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-decoration: none;
    white-space: nowrap;
  }

  .floating-call-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }
}

/* FINAL QA POLISH — keep local-area links, footer contact actions, and social icons visibly branded and separated. */
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 30px auto 0;
}

.service-area-card {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid #d6e2d8;
  border-left: 5px solid var(--primary-green);
  box-shadow: 0 10px 22px rgba(24, 35, 27, 0.07);
  color: var(--text-dark);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-area-card strong {
  color: var(--primary-green);
  font-size: 18px;
  line-height: 1.2;
}

.service-area-card span {
  color: #5a625c;
  font-size: 13px;
  line-height: 1.5;
}

.service-area-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 14px 26px rgba(24, 35, 27, 0.12);
  transform: translateY(-2px);
}

.footer-contact-column .footer-email,
.footer-contact-column .footer-phone-link {
  display: block;
  margin: 0 0 10px;
  color: #f2f6f2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.footer-contact-column .footer-phone-link {
  color: var(--primary-red);
  font-size: 18px;
}

.footer-contact-column .footer-email:hover,
.footer-contact-column .footer-phone-link:hover {
  color: #b8e1c3;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer-social-links a:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #fff;
}

.footer-social-links svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* Final footer-link correction: the legal links in the footer-bottom stay inline and quiet. */
.footer-bottom .footer-contact p a,
.contact-reference .footer-bottom .footer-contact p a {
  display: inline;
  margin: 0;
  color: #cbd7ce;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
}

.footer-bottom .footer-contact p a:hover,
.contact-reference .footer-bottom .footer-contact p a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .hero-nav {
    width: 42px;
    height: 54px;
    font-size: 25px;
  }
}

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

/* MXC-STYLE DALY FOOTER — charcoal five-column footer, Daly green section labels, red contact accents, and responsive service-area treatment. */
.mxc-footer {
  padding: 0 40px 26px;
  background: #171a18;
  color: #f3f6f3;
  border-top: 4px solid var(--primary-green);
}
.mxc-footer-content {
  display: grid;
  grid-template-columns: minmax(210px, 1.25fr) repeat(4, minmax(145px, 1fr));
  gap: 38px;
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 58px 0 48px;
  border-top: 0;
}
.mxc-footer .footer-brand-column,
.mxc-footer .footer-col {
  min-width: 0;
}
.footer-brand-link {
  display: inline-flex;
  align-items: flex-start;
  text-decoration: none;
}
.footer-brand-link {
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-brand-name {
  color: #f3f6f3;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.2;
}
.footer-brand-logo {
  display: block;
  width: min(190px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .2));
}
.footer-tagline {
  max-width: 245px;
  margin: 22px 0 0;
  color: #c7d1c9;
  font-size: 13px;
  line-height: 1.7;
}
.mxc-footer .footer-col h4 {
  margin: 3px 0 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(45, 122, 74, .72);
  color: #2D7A4A;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.9px;
  line-height: 1.3;
  text-transform: uppercase;
}
.mxc-footer .footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mxc-footer .footer-col ul li {
  margin: 0 0 10px;
}
.mxc-footer .footer-col ul li a,
.mxc-footer .footer-view-all {
  color: #d9e1db;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .2px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}
.mxc-footer .footer-col ul li a:hover,
.mxc-footer .footer-view-all:hover {
  color: #ff6b81;
}
.mxc-footer .footer-view-all {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 5px;
  color: #9ed6ac;
  font-size: 11px;
  letter-spacing: 1px;
}
.footer-area-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
}
.footer-area-list li a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.footer-pin-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  color: #9ed6ac;
}
.footer-pin-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.footer-contact-block {
  margin-bottom: 20px;
}
.footer-contact-label {
  display: block;
  margin-bottom: 6px;
  color: #9eaaa1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  line-height: 1.35;
  text-transform: uppercase;
}
.mxc-footer .footer-phone-link,
.mxc-footer .footer-email {
  display: inline-block;
  color: var(--primary-red);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.mxc-footer .footer-email {
  color: #d9e1db;
  font-size: 13px;
  font-weight: 650;
}
.mxc-footer .footer-phone-link:hover,
.mxc-footer .footer-email:hover {
  color: #ff6b81;
}
.mxc-footer .footer-address {
  margin: 0;
  color: #d9e1db;
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
}
.mxc-footer .footer-social-links {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}
.mxc-footer .footer-social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #f3f6f3;
  background: rgba(45, 122, 74, .3);
  border: 1px solid rgba(120, 185, 139, .55);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.mxc-footer .footer-social-button:hover {
  color: #fff;
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-2px);
}
.mxc-footer .footer-social-button svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.mxc-footer .footer-social-button-google {
  box-sizing: border-box;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(120, 185, 139, .55);
  background: rgba(45, 122, 74, .3);
}
.footer-serving-strip {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: #202923;
}
.footer-serving-inner {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 18px 0;
}
.footer-serving-label {
  flex: 0 0 auto;
  color: #9ed6ac;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.footer-serving-list {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 6px 18px;
  color: #cbd7ce;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  letter-spacing: .3px;
  line-height: 1.5;
}
.footer-serving-list span {
  white-space: nowrap;
}
.mxc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 24px 0 6px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  gap: 24px;
}
.mxc-footer-bottom p,
.mxc-footer-bottom .footer-legal-links {
  margin: 0;
  color: #89968d;
  font-size: 13px;
  line-height: 1.5;
}
.footer-legal-links {
  display: flex;
  gap: 11px;
  align-items: center;
}
.mxc-footer-bottom .footer-legal-links a {
  color: #cbd7ce;
  text-decoration: none;
}
.mxc-footer-bottom .footer-legal-links a:hover {
  color: #ff6b81;
}
.mxc-footer .footer-col {
  display: flex;
  min-height: 264px;
  flex-direction: column;
}
.mxc-footer .footer-col .footer-view-all {
  margin-top: auto;
}
.mxc-footer .footer-contact-column {
  justify-content: space-between;
}
@media (max-width: 1120px) {
  .mxc-footer-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-brand-column {
    grid-column: span 3;
  }
  .footer-brand-column .footer-tagline {
    max-width: 420px;
  }
  .footer-serving-inner {
    display: block;
  }
  .footer-serving-list {
    margin-top: 8px;
  }
}
@media (max-width: 700px) {
  .mxc-footer {
    padding: 0 20px 22px;
  }
  .mxc-footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 22px;
    padding: 42px 0 34px;
  }
  .footer-brand-column {
    grid-column: span 2;
  }
  .footer-brand-logo {
    width: 168px;
  }
  .mxc-footer .footer-col h4 {
    margin-bottom: 15px;
  }
  .mxc-footer .footer-col {
    min-height: 0;
  }
  .footer-area-list {
    grid-template-columns: 1fr !important;
  }
  .footer-serving-inner {
    display: block;
    padding: 16px 0;
  }
  .footer-serving-list {
    gap: 7px 14px;
    font-size: 12px;
    line-height: 1.65;
  }
  .mxc-footer-bottom {
    display: block;
    padding-top: 18px;
  }
  .mxc-footer-bottom .footer-legal-links {
    margin-top: 10px;
  }
}

/* MOBILE USABILITY FIXES — collapse the shared nav behind a real hamburger, keep hero copy clear, and preserve a compact call action. */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .header,
  .contact-reference .header {
    position: relative;
    top: auto;
    inset: auto;
  }

  .service-tabs {
    position: static;
  }

  .header-top {
    padding: 8px 12px;
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: .8px;
  }

  .header-main {
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 10px;
    padding: 9px 16px;
    min-height: 70px;
  }

  .header-left {
    flex: 1 1 auto;
    min-width: 0;
  }

  .contact-reference .header-main {
    gap: 0 10px;
  }

  .contact-reference .header-left {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-left .logo {
    gap: 8px;
  }

  .header-left .logo img {
    height: 48px;
  }

  .header-left .logo-text {
    font-size: 16px;
    white-space: nowrap;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    background: #fff;
    border: 1px solid var(--primary-green);
    border-radius: 3px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--primary-green);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-right {
    display: none !important;
  }

  .header-right .header-phone-label {
    display: none;
  }

  .header-right .header-phone {
    font-size: 15px;
  }

  .header-right .header-cta {
    margin-top: 0;
    padding: 9px 11px;
    font-size: 10px;
  }

  .header-nav,
  body.contact-reference .header-nav {
    display: none;
    order: 4;
    flex: 0 0 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 12px;
    padding-top: 4px;
    border-top: 1px solid #dfe8e2;
  }

  .header-nav.is-open,
  body.contact-reference .header-nav.is-open {
    display: flex;
    flex-basis: 100%;
  }

  .header-nav > a,
  .header-nav .nav-dropdown > .nav-dropdown-toggle {
    display: block;
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid #e4ebe6;
    font-size: 13px;
    text-align: left;
  }

  .header-nav .nav-dropdown {
    display: block;
  }

  .header-nav .nav-dropdown-menu,
  .header-nav .nav-dropdown:hover .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0;
    padding: 0 0 4px 14px;
    border: 0;
    box-shadow: none;
  }

  .header-nav .nav-dropdown.is-open .nav-dropdown-menu {
    display: flex;
  }

  .header-nav .nav-dropdown-menu a {
    padding: 9px 4px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .floating-call-button {
    position: fixed;
    left: 16px;
    right: auto;
    top: 64%;
    bottom: auto;
    z-index: 99999;
    display: inline-flex;
    width: 58px;
    min-width: 58px;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--primary-red);
    border: 2px solid rgba(255,255,255,.85);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
    color: #fff;
    text-decoration: none;
    transform: translateY(-50%);
    animation: floating-call-slide-in .6s ease .2s both;
    transition: filter .2s ease, box-shadow .2s ease, transform .2s ease;
  }

  .floating-call-button:hover {
    filter: brightness(.92);
    box-shadow: 0 5px 20px rgba(0,0,0,.45);
    transform: translateY(-50%) scale(1.05);
  }

  .floating-call-button svg {
    display: block;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: currentColor;
    animation: floating-call-ring 2.5s ease-in-out infinite;
  }

  .hero-nav {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .floating-call-button {
    width: 54px;
    min-width: 54px;
    min-height: 54px;
    border-radius: 50%;
  }

  .floating-call-button span,
  .floating-call-button .css-btn-text {
    display: none;
  }

  .floating-call-button svg {
    width: 20px;
    height: 20px;
  }
}

@keyframes floating-call-slide-in {
  from { opacity: 0; transform: translateY(-50%) translateX(-110%); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@keyframes floating-call-ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}

/* MOBILE OVERFLOW GUARDS — city feature photos and embedded media must remain inside the viewport after decode. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

.location-feature-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

table,
pre {
  max-width: 100%;
  overflow-x: auto;
}

/* Footer uses the provided dark-background logo; lightening keeps the black field aligned with the charcoal footer without applying an inverted filter. */
.mxc-footer .footer-brand-logo {
  background: #1a1a1a;
  filter: none;
  mix-blend-mode: normal;
}

/* SHOWROOM VIDEO — a photo-led contractor editorial block directly below the trust bar. */
.showroom-video-section {
  padding: 64px 5%;
  background: #f2f6f3;
  border-bottom: 1px solid #dbe5de;
}

.showroom-video-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.35fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.showroom-video-copy .eyebrow {
  margin: 0 0 10px;
  color: var(--primary-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

.showroom-video-copy h2 {
  margin: 0 0 18px;
  color: #183d29;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  text-transform: uppercase;
}

.showroom-video-copy p:last-child {
  margin: 0;
  max-width: 44rem;
  color: #415048;
  font-size: 17px;
  line-height: 1.72;
}

.showroom-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  border-left: 7px solid var(--primary-green);
  box-shadow: 0 18px 42px rgba(17, 45, 29, .2);
}

.showroom-video-frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92px;
  height: 7px;
  background: var(--primary-red);
  pointer-events: none;
}

.showroom-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .showroom-video-section {
    padding: 42px 20px 48px;
  }

  .showroom-video-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .showroom-video-copy h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .showroom-video-copy p:last-child {
    font-size: 16px;
  }
}

/* CORE SERVICE SPOTLIGHTS — strong editorial contrast, angular framing, and homeowner-first hierarchy in the Daly green/red system. */
.core-service-highlights {
  padding: clamp(72px, 8vw, 108px) 5%;
  background:
    linear-gradient(135deg, rgba(45, 122, 74, .08) 0, rgba(45, 122, 74, 0) 38%),
    #f4f7f5;
  border-top: 1px solid #dce6df;
  border-bottom: 1px solid #dce6df;
}

.core-service-highlights-heading {
  width: min(1180px, 100%);
  margin: 0 auto 42px;
  padding-left: 24px;
  border-left: 6px solid var(--primary-red);
}

.core-service-highlights-heading .eyebrow,
.core-service-feature-copy .eyebrow {
  margin: 0 0 10px;
  color: var(--primary-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.core-service-highlights-heading h2 {
  max-width: 850px;
  margin: 0 0 14px;
  color: #173d29;
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 1.02;
  text-transform: uppercase;
}

.core-service-highlights-heading > p:last-child {
  max-width: 760px;
  margin: 0;
  color: #47564d;
  font-size: 17px;
  line-height: 1.7;
}

.core-service-highlights-list {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.core-service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  min-height: 520px;
  overflow: hidden;
  background: #fff;
  border-top: 7px solid var(--primary-green);
  box-shadow: 0 22px 55px rgba(23, 61, 41, .14);
}

.core-service-feature--aluminum {
  border-top-color: var(--primary-red);
}

.core-service-feature-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #dce6df;
}

.core-service-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 31, 20, .55) 100%);
  pointer-events: none;
}

.core-service-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.core-service-feature--aluminum .core-service-feature-media img {
  object-position: center 42%;
}

.core-service-feature-label {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  padding: 12px 18px;
  background: var(--primary-red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}

.core-service-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 70px);
  background: #fff;
}

.core-service-feature--aluminum .core-service-feature-copy {
  background: #173d29;
  color: #fff;
}

.core-service-feature-copy h3 {
  margin: 0 0 20px;
  color: #173d29;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.02;
  text-transform: uppercase;
}

.core-service-feature--aluminum .core-service-feature-copy h3 {
  color: #fff;
}

.core-service-feature-copy > p:not(.eyebrow) {
  margin: 0;
  color: #46534b;
  font-size: 16px;
  line-height: 1.72;
}

.core-service-feature--aluminum .core-service-feature-copy > p:not(.eyebrow) {
  color: #dce8e0;
}

.core-service-feature-points {
  display: grid;
  gap: 10px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.core-service-feature-points li {
  position: relative;
  padding-left: 22px;
  color: #263d30;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.core-service-feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 9px;
  height: 9px;
  background: var(--primary-green);
  box-shadow: 4px 4px 0 rgba(45, 122, 74, .18);
}

.core-service-feature--aluminum .core-service-feature-points li {
  color: #fff;
}

.core-service-feature--aluminum .core-service-feature-points li::before {
  background: var(--primary-red);
  box-shadow: 4px 4px 0 rgba(196, 30, 58, .28);
}

.core-service-feature-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 19px;
  background: var(--primary-green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms cubic-bezier(.23, 1, .32, 1), background-color 160ms cubic-bezier(.23, 1, .32, 1);
}

.core-service-feature--aluminum .core-service-feature-link {
  background: var(--primary-red);
}

.core-service-feature-link:hover,
.core-service-feature-link:focus-visible {
  background: #205c37;
  color: #fff;
}

.core-service-feature--aluminum .core-service-feature-link:hover,
.core-service-feature--aluminum .core-service-feature-link:focus-visible {
  background: #9f1730;
}

.core-service-feature-link:active {
  transform: scale(.97);
}

.core-service-feature-link span {
  font-size: 18px;
  line-height: .7;
}

@media (max-width: 900px) {
  .core-service-feature {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .core-service-feature-media,
  .core-service-feature--glass .core-service-feature-media {
    order: 1;
    min-height: clamp(270px, 60vw, 430px);
  }

  .core-service-feature-copy,
  .core-service-feature--glass .core-service-feature-copy {
    order: 2;
  }
}

@media (max-width: 600px) {
  .core-service-highlights {
    padding: 56px 20px 64px;
  }

  .core-service-highlights-heading {
    margin-bottom: 30px;
    padding-left: 16px;
    border-left-width: 5px;
  }

  .core-service-highlights-heading h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .core-service-highlights-heading > p:last-child {
    font-size: 16px;
  }

  .core-service-highlights-list {
    gap: 24px;
  }

  .core-service-feature {
    border-top-width: 5px;
  }

  .core-service-feature-media {
    min-height: 250px;
  }

  .core-service-feature-copy {
    padding: 32px 24px 36px;
  }

  .core-service-feature-copy h3 {
    font-size: clamp(30px, 10vw, 39px);
  }

  .core-service-feature-link {
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .core-service-feature-link {
    transition: none;
  }
}

/* LOCATION PAGE COMPOSITION — centered homeowner-facing hero and client-project photography within Daly's full-width editorial bands. */
.location-page {
  background: #fff;
}

.location-page .location-hero {
  background: #fff;
  border-top: 3px solid var(--primary-green);
  border-bottom: 1px solid #dce6df;
}

.location-page .location-hero .inner-hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 5vw, 68px) 0 clamp(38px, 4.5vw, 60px);
  text-align: center;
}

.location-page .location-hero .eyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--primary-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.location-page .location-hero h1 {
  max-width: 980px;
  margin: 0 auto 14px;
  color: #1d2c23;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.04;
}

.location-page .location-hero p {
  max-width: 880px;
  margin: 0 auto;
  color: #4b5950;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
}

.location-page .location-hero .hero-actions {
  justify-content: center;
  margin-top: 26px;
}

.location-project-visual {
  width: 100%;
  padding: clamp(34px, 4vw, 54px) 20px;
  background: #f1f5f2;
  border-bottom: 1px solid #dce6df;
}

.location-project-visual-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.location-project-visual .location-feature-image {
  display: block;
  width: min(1040px, 100%);
  aspect-ratio: 16 / 8.2;
  height: auto;
  margin: 0 auto;
  border-top: 7px solid var(--primary-green);
  border-right: 7px solid #dfe9e2;
  object-fit: cover;
  object-position: center;
  box-shadow: 16px 16px 0 #dce7df;
}

.location-page .page-container.service-page-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(52px, 6vw, 82px) 0 clamp(72px, 8vw, 108px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: clamp(38px, 5vw, 68px);
}

.location-page .location-main {
  min-width: 0;
}

.location-page .location-lede {
  margin-top: 0;
  padding: 22px 24px;
  border-left: 5px solid var(--primary-red);
  background: #f2f6f3;
  color: #294333;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .location-page .location-hero .inner-hero-content {
    width: min(100% - 32px, 680px);
    padding: 34px 0 38px;
  }

  .location-page .location-hero h1 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .location-page .location-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .location-page .location-hero .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .location-project-visual {
    padding: 28px 20px 36px;
  }

  .location-project-visual .location-feature-image {
    aspect-ratio: 5 / 4;
    border-top-width: 5px;
    border-right-width: 5px;
    box-shadow: 10px 10px 0 #dce7df;
  }

  .location-page .page-container.service-page-layout {
    width: 100%;
    padding: 42px 20px 68px;
  }

  .location-page .location-lede {
    padding: 19px 18px;
    font-size: 17px;
  }
}
