/* Affordable Junk Removal - Fairfield CT (match to affordablejunkct.com) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;700&display=swap');

@font-face {
  font-family: 'helvetica-w01-bold';
  font-style: normal;
  font-weight: 400;
  src: url('https://static.parastorage.com/fonts/v2/2f12de04-5ca4-4ada-9e66-a958673b12b5/v1/helvetica-w01-bold.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'helvetica-w01-roman';
  font-style: normal;
  font-weight: 400;
  src: url('https://static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-w01-roman.woff2') format('woff2');
  font-display: swap;
}

:root {
  /* Wix palette from original site */
  --color-11: #ffffff;
  --color-12: #f7f7f7;
  --color-15: #000000;
  --color-17: #ea0029;
  --color-36: #ffffff;
  --color-37: #000000;
  --color-40: #767674;
  --color-41: #930020;
  --color-43: #ff0037;
  --service-card-hover: #0c4426;
  --font-helvetica: Helvetica, Arial, sans-serif;
  --font-poppins: 'Poppins', Helvetica, Arial, sans-serif;
  --site-width: 980px;
  --container: min(var(--site-width), 100% - 2rem);
  --radius-btn: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-helvetica);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-37);
  background: var(--color-12);
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Header - black bar, logo left, nav center, Free Quote right */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-37);
  padding: 0;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.site-header .header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Logo: same image in navbar and hero */
.logo-block {
  text-decoration: none;
  display: block;
  line-height: 0;
}

.nav-logo {
  display: block;
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}

.logo-block:hover .nav-logo {
  opacity: 0.9;
}

.nav-main {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 1rem;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--color-36);
  text-decoration: none;
  font-family: var(--font-helvetica);
  font-weight: 400;
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--color-17);
  text-decoration: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-17);
  color: var(--color-36) !important;
  padding: 10px 22px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  flex-shrink: 0;
}

.header-cta:hover {
  background: #c70022;
  color: var(--color-36) !important;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-36);
}

@media (max-width: 900px) {
  .nav-links {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-main {
    display: none;
    width: 100%;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0;
    order: 10;
    gap: 0;
  }
  .nav-main.is-open {
    display: flex;
  }
  .nav-links {
    flex: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 0.75rem;
  }
  .nav-main .header-cta {
    margin-top: 1rem;
    width: 100%;
    max-width: 280px;
    align-self: center;
    box-sizing: border-box;
  }
  .site-header .header-inner {
    justify-content: space-between;
  }
}

/* Sections */
section {
  padding: 3rem 0;
}

.section-title {
  font-family: var(--font-helvetica);
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 0.5rem;
  color: var(--color-37);
}

.section-title-hero {
  font-size: 54px;
  line-height: 1.2;
  color: var(--color-37);
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-37);
  margin: 0 0 2rem;
  max-width: 600px;
  font-family: var(--font-helvetica);
}

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

/* Hero - dark bg image, heading left, contact box + quote button, truck right */
.hero {
  color: var(--color-36);
  padding: 3rem 0 4rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-37) url('../images/hero-bg.png') center center / cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-content {
  max-width: 520px;
}

.hero h1 {
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 70px;
  line-height: normal;
  margin: 0 0 1.5rem;
  color: rgb(255, 255, 255);
  letter-spacing: -0.03em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.hero h1 .hero-line {
  display: block;
  margin-bottom: 0.2em;
  white-space: nowrap;
}

.hero h1 .hero-line:last-child {
  margin-bottom: 0;
}

.hero-cta-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: stretch;
}

.hero-contact-box {
  background: var(--color-37);
  flex: 1 1 0;
  min-width: 0;
  min-height: 138px;
  padding: 24px 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.hero-contact-label {
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: rgb(255, 255, 255);
  margin-bottom: 16px;
}

.hero-phone {
  font-family: helvetica-w01-roman, helvetica-w02-roman, helvetica-lt-w10-roman, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: rgb(255, 255, 255);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-phone:hover {
  text-decoration: underline;
}

.hero-quote-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background: var(--color-17);
  color: var(--color-37) !important;
  flex: 1 1 0;
  min-width: 0;
  min-height: 138px;
  padding: 24px 28px 20px;
  text-decoration: none;
  border-radius: 0;
  border: none;
  box-sizing: border-box;
}

.hero-quote-btn:hover {
  background: #c70022;
  color: var(--color-37) !important;
  text-decoration: none;
}

.hero-quote-title {
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  display: block;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--color-37);
}

.hero-quote-sub {
  font-family: var(--font-helvetica);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  margin-top: 14px;
  max-width: none;
  color: rgb(0, 0, 0);
}

.hero-quote-sub-line {
  display: block;
}

.hero-image-wrap {
  max-width: 960px;
}

.hero-image-wrap .hero-image {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 780px;
  object-fit: contain;
  object-position: center right;
  border-radius: 0;
}

@media (max-width: 900px) {
  .hero .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero h1 {
    text-align: center;
    font-size: clamp(38px, 9vw, 64px);
  }
  .hero h1 .hero-line {
    white-space: normal;
  }
  .hero-cta-row {
    justify-content: center;
    align-items: stretch;
  }
  .hero-contact-box,
  .hero-quote-btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }
  .hero-image-wrap {
    margin: 0 auto;
    max-width: 320px;
  }
  .hero-quote-sub {
    max-width: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-helvetica);
  transition: background 0.4s ease, color 0.4s ease;
}

.btn-primary {
  background: var(--color-17);
  color: var(--color-15);
}

.btn-primary:hover {
  background: var(--color-15);
  color: var(--color-11);
  text-decoration: none;
}

.btn-outline {
  background: var(--color-37);
  color: var(--color-36);
  border: 2px solid rgba(255,255,255,0.8);
}

.btn-outline:hover {
  background: var(--color-36);
  color: var(--color-37);
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image-wrap {
    order: -1;
    margin: 0 auto;
  }
}

/* About — split red + photo */
.about-section {
  padding: 2.5rem 0;
  background: var(--color-11);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(520px, 70vh);
  max-width: 100%;
}

.about-content-col {
  background: var(--color-17);
  color: rgb(255, 255, 255);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-content-inner {
  max-width: 32em;
  width: 100%;
  text-align: left;
}

.about-heading {
  margin: 0 0 1.5rem;
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  color: rgb(255, 255, 255);
  text-align: left;
}

.about-heading-line {
  display: block;
}

.about-lead {
  margin: 0 0 2rem;
  font-family: helvetica-w01-roman, helvetica-w02-roman, helvetica-lt-w10-roman, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.9375rem, 1.1vw + 0.8rem, 1.0625rem);
  line-height: 1.55;
  color: rgb(255, 255, 255);
  text-align: left;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--color-37);
  color: rgb(255, 255, 255) !important;
  font-family: var(--font-helvetica);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-btn);
  border: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.about-btn:hover {
  background: #1a1a1a;
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
}

.about-image-col {
  position: relative;
  min-height: 320px;
  background: var(--color-37);
  align-self: stretch;
}

.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-image-col {
    min-height: 280px;
    height: 280px;
    order: 2;
  }

  .about-content-col {
    order: 1;
    padding: 2.5rem 1.5rem;
  }
}

/* Services grid - inset from viewport; gaps match side padding */
#services .container,
.about-page-services .container {
  max-width: 1320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 4.5rem);
  padding-right: clamp(1.5rem, 5vw, 4.5rem);
  box-sizing: border-box;
}

#services .section-title {
  margin-bottom: 3rem;
  font-size: 54px;
  line-height: 1em;
}

#services .section-subtitle {
  margin-bottom: 0;
  display: none;
}

.services-see-all {
  text-align: center;
  margin: -1.5rem 0 2rem;
  font-size: 1rem;
}

.services-see-all a {
  color: var(--color-17);
  font-weight: 600;
  text-decoration: none;
}

.services-see-all a:hover {
  text-decoration: underline;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  column-gap: clamp(1rem, 2.5vw, 1.75rem);
  row-gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
}

.service-card {
  background: var(--color-36);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 0;
  min-height: 300px;
  max-width: 280px;
  width: 100%;
  justify-self: center;
  padding: 26px 16px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  box-shadow: none;
  transition: none;
}

.service-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.service-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--color-37);
  text-align: center;
  letter-spacing: normal;
}

.service-card p {
  margin: 0;
  flex: 1;
  text-align: center;
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 200;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--color-37);
  letter-spacing: normal;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    column-gap: 1rem;
    row-gap: 1.25rem;
  }

  .service-card {
    max-width: 260px;
  }

  #services .container,
  .about-page-services .container {
    padding-left: clamp(1.25rem, 4vw, 2rem);
    padding-right: clamp(1.25rem, 4vw, 2rem);
  }

  #services .section-title {
    font-size: 36px;
  }
}

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

  .service-card {
    min-height: 260px;
    max-width: 100%;
    justify-self: stretch;
  }
}

/* Quote section - Get Your Free Quote */
.quote-section {
  background: var(--color-12);
  padding: 3.5rem 0;
}

.quote-section .container {
  max-width: min(720px, 100% - 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.quote-section .section-title.quote-title,
.quote-section .section-title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--color-17);
  text-align: center;
  margin: 0 0 1rem;
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
}

.quote-section .section-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-37);
  text-align: center;
  margin: 0 0 2.5rem;
  max-width: 100%;
}

.quote-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
  width: 100%;
}

.form-grid .span-full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-group label {
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  color: var(--color-37);
  font-family: var(--font-helvetica);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-family: var(--font-helvetica);
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  color: var(--color-37);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-40);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-37);
  box-shadow: 0 0 0 1px var(--color-37);
}

.form-actions {
  margin-top: 1.75rem;
}

.quote-section .btn-submit {
  background: var(--color-17);
  color: #fff !important;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  font-family: var(--font-helvetica);
  width: 100%;
  box-sizing: border-box;
}

.quote-section .btn-submit:hover {
  background: #c70022;
  color: #fff !important;
}

@media (max-width: 540px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Before/After - two images side by side with white frame and shadow */
.gallery-section {
  background: var(--color-12);
  padding: 3.5rem 0;
}

.gallery-section .section-title {
  font-size: 54px;
  line-height: 1em;
  text-align: center;
  color: var(--color-37);
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  margin: 0 0 2rem;
}

.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-pair img {
  width: 100%;
  height: auto;
  aspect-ratio: 404 / 539;
  object-fit: cover;
  display: block;
  border: 10px solid #fff;
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 600px) {
  .gallery-pair {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Us - full-width banner + three flush columns; inset on all sides */
.why-section {
  margin: 0 2.25rem 1.75rem 2.25rem;
  padding: 0;
  max-width: none;
  border: none;
  box-shadow: none;
  background: var(--color-11);
}

@media (min-width: 900px) {
  .why-section {
    margin: 0 3.5rem 2.25rem 3.5rem;
  }
}

.why-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-37);
  background-image: url('../images/why-choose-us-bg.jpg');
  background-size: cover;
  background-position: 35% 90%;
}

.why-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.why-banner .section-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin: 0;
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
}

.why-section .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: none;
  margin: 0;
}

.why-section .feature {
  padding: 3rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.why-section .feature strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-family: var(--font-helvetica);
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon img {
  width: 40px;
  height: 40px;
  display: block;
}

.feature-black .why-icon img,
.feature-red .why-icon img {
  filter: brightness(0) invert(1);
}

.feature-white .why-icon img {
  filter: brightness(0);
}

.feature-black {
  background: var(--color-15);
  color: var(--color-36);
}

.feature-black strong {
  color: var(--color-36);
}

.feature-red {
  background: var(--color-17);
  color: var(--color-36);
}

.feature-red strong {
  color: var(--color-36);
}

.feature-white {
  background: var(--color-11);
  color: var(--color-37);
}

.feature-white strong {
  color: var(--color-37);
}

@media (max-width: 768px) {
  .why-section .features {
    grid-template-columns: 1fr;
  }
}

/* Reviews - carousel with prev/next arrows */
.reviews-section {
  background: var(--color-12);
  padding: 3rem 0;
}

.reviews-section .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.3;
  font-weight: 400;
  color: var(--color-37);
  text-align: center;
  margin: 0 0 2rem;
  font-family: var(--font-helvetica);
}

.reviews-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.reviews-prev,
.reviews-next {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  color: var(--color-37);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.reviews-prev:hover,
.reviews-next:hover {
  opacity: 0.7;
}

.reviews-slides {
  flex: 1;
  min-width: 0;
  position: relative;
}

.reviews-slides .review-card {
  display: none;
  background: transparent;
  padding: 0;
  max-width: none;
  margin: 0;
  text-align: center;
}

.reviews-slides .review-card.is-active {
  display: block;
}

.review-card blockquote {
  margin: 0 0 0.75rem;
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--font-helvetica);
  color: var(--color-37);
  font-style: italic;
  font-weight: 400;
}

.review-card cite {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-37);
}

/* Service area - Fairfield map section */
.service-area-section {
  background: var(--color-11);
  padding: 3.5rem 0 4.5rem;
}

.service-area-header {
  margin-bottom: 2rem;
}

.service-area-subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.service-area-layout {
  width: 100%;
}

.service-area-map-wrap {
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.service-area-map {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
}

/* Footer - two sections: black top, red bottom */
.site-footer {
  color: var(--color-36);
}

.footer-top .container,
.footer-bottom .container {
  max-width: min(1600px, 100% - 1rem);
}

/* Top section - black */
.footer-top {
  background: var(--color-37);
  padding: 3rem 0;
}

.footer-top-inner {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) repeat(3, minmax(140px, 1fr));
  gap: 3rem 2.5rem;
  align-items: start;
}

.footer-brand .footer-logo {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 0 0.5rem;
}

.footer-tagline {
  margin: 0;
  font-size: 13px;
  color: var(--color-36);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-heading {
  margin: 0 0 1rem;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-17);
}

.footer-top .footer-col p,
.footer-top .footer-col a {
  margin: 0 0 0.5rem;
  font-size: 14px;
  color: var(--color-36);
  text-decoration: none;
  line-height: 1.5;
}

.footer-top .footer-col a:hover {
  color: var(--color-11);
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  color: var(--color-36);
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social a {
  display: inline-block;
}

.footer-social img {
  display: block;
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

.footer-social a:hover img {
  opacity: 1;
}

/* Bottom section - red */
.footer-bottom {
  background: var(--color-17);
  padding: 2.5rem 0 1.5rem;
}

.footer-bottom-inner {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 2rem 15rem;
  align-items: start;
  margin: 0 auto 2rem;
  width: max-content;
  max-width: 100%;
}

.footer-bottom-heading {
  margin: 0 0 1rem;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-37);
  text-transform: none;
  letter-spacing: 0;
}

.footer-bottom .footer-links a {
  color: var(--color-36);
  font-size: 14px;
}

.footer-bottom .footer-links a:hover {
  text-decoration: underline;
}

.footer-copyright {
  margin: 0;
  font-size: 13px;
  text-align: center;
  color: var(--color-36);
}

.footer-copyright .footer-credit {
  color: var(--color-36);
  font-weight: 600;
  text-decoration: none;
}

.footer-copyright .footer-credit:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .service-area-map-wrap,
  .service-area-map {
    min-height: 360px;
  }

  .footer-top-inner,
  .footer-bottom-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    justify-content: center;
  }
}

.text-center {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* —— About page (affordablejunkct.com/about structure) —— */
.about-page-hero.about-section {
  padding: 0;
}

.about-commitment {
  padding: 3.5rem 1.5rem;
  position: relative;
  min-height: 280px;
  background-color: var(--color-11);
  background-image: url('../images/commitment-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-commitment::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.about-commitment-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-commitment .section-title {
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  color: #fff;
}

.about-commitment-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #fff;
  text-align: center;
}

.about-process {
  background: var(--color-11);
  padding: 3rem 0 3.5rem;
}

/* Services: process bar sits flush above quote banner (no white band) */
.services-page .services-page-process {
  padding-bottom: 0;
}

.services-page .services-quote-banner {
  margin-top: 0;
}

.about-process-title {
  margin: 0 0 2.5rem;
  padding: 0 1rem;
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--color-37);
}

.about-process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-process-step {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.about-process-icon {
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.about-process-step-1 {
  background: var(--color-37);
  color: #fff;
}
.about-process-step-1 .about-process-icon { background: var(--color-17); }
.about-process-step-1 .about-process-label,
.about-process-step-1 .about-process-name { color: #fff; }

.about-process-step-2,
.about-process-step-3 {
  background: var(--color-11);
  color: var(--color-37);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.about-process-step-2 .about-process-icon,
.about-process-step-3 .about-process-icon { background: var(--color-37); }
.about-process-step-2 .about-process-label,
.about-process-step-2 .about-process-name,
.about-process-step-3 .about-process-label,
.about-process-step-3 .about-process-name { color: var(--color-37); }

.about-process-step-4 {
  background: var(--color-17);
  color: #fff;
}
.about-process-step-4 .about-process-icon { background: #fff; }
.about-process-step-4 .about-process-label,
.about-process-step-4 .about-process-name { color: #fff; }

.about-process-label {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}

.about-process-name {
  margin: 0;
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
}

.about-services-tagline {
  margin: 0;
  padding: 2rem 1.5rem 0.5rem;
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--color-37);
  background: var(--color-11);
}

.about-why {
  padding: 3rem 1.5rem 3.5rem;
  background: var(--color-11);
}

.about-why-split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.about-why-image-wrap {
  position: relative;
  border: 3px solid #fff;
  border-radius: 8px;
  box-shadow: 6px 8px 20px rgba(0, 0, 0, 0.14);
  background: #fff;
  overflow: hidden;
}

.about-why-image {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 5px;
}

.about-why-content {
  text-align: left;
}

.about-why-small-heading {
  margin: 0 0 0.5rem;
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--color-17);
  text-transform: uppercase;
}

.about-why-main-heading {
  margin: 0 0 1.25rem;
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.7vw, 1.75rem);
  line-height: 1.25;
  color: var(--color-37);
}

.about-why-intro {
  margin: 0 0 1.25rem;
  line-height: 1.6;
  color: var(--color-37);
}

.about-why-list {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  line-height: 1.7;
  color: var(--color-37);
}

.about-why-list li {
  margin-bottom: 0.5rem;
}

.about-why-list li::marker {
  color: var(--color-37);
}

.about-why-close {
  margin: 0;
  line-height: 1.6;
  color: var(--color-37);
}

/* Three pillars - black bg, red icons, white text (from pagesource) */
.about-three-pillars {
  background: var(--color-37);
  color: var(--color-36);
  padding: 3.5rem 1.5rem;
}

.about-three-pillars-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.about-pillar-block {
  text-align: left;
}

.about-pillar-block-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
}

.about-pillar-block-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.about-pillar-block-title {
  margin: 0 0 0.75rem;
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
}

.about-pillar-block-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}

.about-quote-cta .container {
  max-width: min(760px, 100% - 2rem);
}

.about-quote-btns {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.about-page-services {
  padding: 3rem 0 2rem;
  background: var(--color-12);
}

.about-page-services .section-title {
  margin-bottom: 2.5rem;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  line-height: 1.1;
}

.about-page-services .services-grid {
  text-align: left;
}

.about-services-cta {
  margin: 2rem 0 0;
}

@media (max-width: 768px) {
  .about-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-why-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-three-pillars-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-pillar-block {
    text-align: center;
  }

  .about-why-image-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-cta-hero-inner {
    padding: 3rem 1.5rem;
  }

  .about-cta-hero-title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }
}

/* Services page — banner above Get Your Free Quote */
.services-quote-banner {
  position: relative;
  min-height: clamp(320px, 48vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  background-image: url('../images/services-quote-banner-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
}

.services-quote-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 0;
}

.services-quote-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem);
}

.services-quote-banner-title {
  margin: 0 0 1.25rem;
  padding: 0;
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}

.services-quote-banner-line {
  display: block;
}

.services-quote-banner-text {
  margin: 0 auto 1.75rem;
  max-width: 38rem;
  font-size: clamp(0.98rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.96);
}

.services-quote-banner-btn.header-cta {
  margin-top: 0.25rem;
  padding: 15px 32px;
  font-size: 15px;
}

@media (max-width: 600px) {
  .services-quote-banner {
    min-height: 300px;
  }

  .services-quote-banner-inner {
    padding: 2.5rem 1.25rem;
  }
}

/* —— Service Area page (Fairfield CT) —— */
.service-area-page {
  margin: 0;
  padding: 0;
}

.service-area-page > .services-split-hero:first-child {
  margin: 0;
  padding: 0;
}

/* Match reference: solid white right panel (Services page uses light gray) */
.service-area-split-hero .services-split-hero-right {
  background: #fff;
}

.service-area-towns {
  background: linear-gradient(180deg, #141414 0%, #1c1c1c 100%);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.service-area-towns .container {
  max-width: 1000px;
}

.service-area-towns-kicker {
  margin: 0 0 0.75rem;
  text-align: center;
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-43);
  letter-spacing: -0.02em;
}

.service-area-towns-intro {
  margin: 0 auto 2.5rem;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.service-area-towns-intro a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

/* Fairfield & beyond — card grid */
.service-area-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 960px;
  margin: 0 auto;
}

.service-area-town-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.65rem);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-area-town-card:hover {
  border-color: rgba(255, 193, 7, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.service-area-town-card--county {
  grid-column: 1 / -1;
}

.service-area-town-card-head {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-area-town-card-accent {
  display: block;
  width: 2.5rem;
  height: 3px;
  margin: 0 auto 0.85rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-43), rgba(255, 193, 7, 0.5));
}

.service-area-town-card-title {
  margin: 0 0 0.5rem;
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.service-area-town-card-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.service-area-town-card--nearby .service-area-town-card-desc strong {
  color: var(--color-43);
  font-weight: 700;
}

.service-area-town-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
}

.service-area-town-list--county {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 1.25rem;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}

.service-area-town-list--county li {
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-area-town-list--compact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
}

.service-area-town-list--compact li {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 600px) {
  .service-area-town-list--county {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
}

.service-area-map-section {
  background: #0d0d0d;
  color: #eee;
  padding: 2.5rem 0 0;
}

.service-area-map-section .section-title {
  color: #fff;
}

.service-area-map-section-head {
  padding-bottom: 1.25rem;
}

.service-area-map-sub {
  margin-bottom: 0 !important;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.75);
}

.service-area-map-fullbleed {
  width: 100%;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-area-map-root {
  width: 100%;
  height: min(520px, 62vh);
  min-height: 360px;
  background: #141414;
  position: relative;
}

.service-area-map-root.service-area-map-loading::after {
  content: "Loading map…";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  pointer-events: none;
}

/* Google Maps info popup (matches comp: title + Directions) */
.service-area-map-popup-inner {
  padding: 0.35rem 1.75rem 0.5rem 0.25rem;
  min-width: 180px;
  font-family: inherit;
}

.service-area-map-popup-title {
  display: block;
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 0.35rem;
}

.service-area-map-popup-dir {
  font-size: 0.875rem;
  color: #1a73e8;
  text-decoration: underline;
}

/* Leaflet fallback: red pin + popup */
.service-area-leaflet-marker {
  background: none;
  border: none;
}

.service-area-leaflet-pin {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto;
  background: var(--color-17, #c62828);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  position: relative;
  top: 4px;
}

.service-area-leaflet-pin::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.leaflet-popup-content-wrapper.service-area-leaflet-popup-wrap {
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.leaflet-popup-content .service-area-map-popup-inner {
  margin: 0.25rem 0.5rem 0.35rem 0;
}

.service-area-map-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.service-area-map {
  width: 100%;
  height: min(420px, 55vw);
  border: 0;
  display: block;
}

.service-area-process {
  padding-bottom: 0;
}

.service-area-final-cta {
  margin-top: 0;
}

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

  .service-area-town-card--county {
    grid-column: auto;
  }

  .service-area-town-list--county {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* About page CTA hero banner (above footer) */
.about-cta-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a2a2a;
  background-image: url('../images/junk-hero-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-36);
  text-align: center;
}

.about-cta-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.about-cta-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-cta-hero-title {
  margin: 0 0 1rem;
  font-family: 'helvetica-w01-bold', Helvetica, Arial, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--color-36);
}

.about-cta-hero-text {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.about-cta-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--color-17);
  color: var(--color-36) !important;
  font-family: var(--font-helvetica);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 24px;
  border: none;
  transition: background 0.2s ease;
}

.about-cta-hero-btn:hover {
  background: #c70022;
  color: var(--color-36) !important;
}

/* Anchor offset below fixed header */
.service-card[id],
#all-services {
  scroll-margin-top: calc(var(--header-height, 80px) + 1rem);
}

/* Services page */
.services-page {
  margin: 0;
  padding: 0;
}

.services-page > .services-split-hero:first-child {
  margin: 0;
  padding: 0;
}

/* Services page — hero ~60% of viewport below nav (reference layout) */
.services-split-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: max(300px, calc((100svh - 72px) * 0.62));
  align-items: stretch;
}

.services-split-hero-left {
  background: var(--color-17);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 1.5rem 2rem;
  box-sizing: border-box;
}

/* Block centered in column; lines left-aligned within the block */
.services-split-hero-title {
  margin: 0;
  padding: 0;
  font-family: 'helvetica-w01-bold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: left;
  width: fit-content;
  max-width: 100%;
}

.services-split-hero-line {
  display: block;
}

.services-split-hero-right {
  background: #ebebeb;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: clamp(1rem, 2vh, 1.35rem);
  margin: 0;
  padding: 1.25rem clamp(2rem, 5vw, 4rem) 1.75rem;
  box-sizing: border-box;
}

.services-split-hero-logo {
  display: block;
  width: 100%;
  max-width: min(480px, 100%);
  height: auto;
}

.services-split-hero-intro {
  margin: 0;
  max-width: 32rem;
  font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
  line-height: 1.65;
  color: #1a1a1a;
}

/* CTA uses .header-cta for pill match; ensure contrast on white panel */
.services-split-hero-btn.header-cta {
  margin-top: 0.25rem;
  box-shadow: none;
}

/* Extra space above “Our Services” on services page */
.services-page .services-page-list {
  padding-top: clamp(3.5rem, 12vh, 6.5rem);
}

@media (max-width: 900px) {
  .services-split-hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .services-split-hero-left {
    justify-content: center;
    align-items: center;
    min-height: auto;
    padding: 0 1.5rem 1.75rem;
  }

  .services-split-hero-title {
    font-size: clamp(2rem, 9vw, 2.85rem);
    text-align: left;
    width: fit-content;
  }

  .services-split-hero-right {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 1.5rem 2rem;
    min-height: auto;
  }

  .services-split-hero-intro {
    max-width: none;
  }

  .services-split-hero-btn.header-cta {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* —— Our Work page (affordablejunkct.com/our-work) —— */
.our-work-page {
  margin: 0;
  padding: 0;
}

.our-work-hero {
  position: relative;
  min-height: max(420px, calc((100svh - 80px) * 0.72));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.our-work-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/our-work/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
}

.our-work-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.our-work-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.25rem 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.our-work-hero-title {
  margin: 0;
  font-family: 'helvetica-w01-bold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  line-height: 1.08;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.our-work-hero-line {
  display: block;
}

.our-work-hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.45));
}

.our-work-hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.our-work-intro {
  background: #f7f7f7;
  padding: 3rem 0 3.5rem;
}

.our-work-intro-title {
  margin: 0 auto 1rem;
  max-width: 920px;
  text-align: center;
  font-family: 'helvetica-w01-bold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 3.8vw, 2.35rem);
  line-height: 1.2;
  color: #000;
}

.our-work-intro-tags {
  margin: 0 0 1.25rem;
  text-align: center;
  font-family: 'helvetica-w01-bold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--color-17);
}

.our-work-tag-sep {
  margin: 0 0.5rem;
  color: var(--color-17);
  font-weight: 700;
}

.our-work-intro-text {
  margin: 0 auto 2rem;
  max-width: 800px;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #4a4a4a;
}

/* Gallery — modest side padding so images don’t touch viewport edges */
.our-work-gallery-bleed {
  width: 100%;
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

.our-work-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  max-width: none;
}

.our-work-gallery-item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1;
  background: #e8e8e8;
}

.our-work-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.our-work-gallery-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 992px) {
  .our-work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .our-work-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .our-work-hero-title {
    text-align: center;
  }

  .our-work-hero-graphic {
    order: -1;
  }

  .our-work-hero-img {
    max-width: 340px;
  }
}

@media (max-width: 480px) {
  .our-work-intro-tags {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .our-work-tag-sep {
    display: none;
  }
}

/* ——— Contact page (reference: ~64/36 hero, red | grey intro, then black | form) ——— */
.contact-page {
  margin: 0;
  padding: 0;
}

.contact-page > section.contact-hero-split {
  padding: 0;
}

.contact-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  width: 100%;
  align-items: stretch;
}

.contact-hero-red {
  grid-column: 1;
  grid-row: 1;
  background: var(--color-17);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(480px, 58vh, 720px);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

.contact-hero-title {
  margin: 0;
  font-family: 'helvetica-w01-bold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 68px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: left;
  width: fit-content;
  max-width: min(100%, 90vw);
}

@media (max-width: 1200px) {
  .contact-hero-title {
    font-size: clamp(2.35rem, 5.5vw, 68px);
  }
}

.contact-title-line {
  display: block;
  text-align: left;
}

.contact-hero-intro-panel {
  grid-column: 2;
  grid-row: 1;
  background: #e8e8e8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(0.75rem, 1.5vh, 1.15rem);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3.5vw, 2.5rem);
  box-sizing: border-box;
}

.contact-hero-dark {
  grid-column: 1;
  grid-row: 2;
  background: #0a0a0a;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5.5vw, 4.75rem);
  flex-shrink: 0;
}

.contact-hero-form-panel {
  grid-column: 2;
  grid-row: 2;
  background: #fff;
  padding: clamp(1.75rem, 3vw, 2.75rem) clamp(1.75rem, 3.5vw, 2.75rem) clamp(2.5rem, 4vw, 3.5rem);
  box-sizing: border-box;
  border-top: 1px solid #d8d8d8;
}

.contact-get-in-touch {
  margin: 0 0 1.25rem;
  font-family: 'helvetica-w01-bold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--color-17);
  text-transform: none;
}

.contact-detail {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

.contact-detail a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-detail a:hover {
  border-bottom-color: #fff;
}

.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-social-link {
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.contact-social-link:hover {
  opacity: 1;
  color: var(--color-17);
}

.contact-intro {
  margin: 0;
  max-width: none;
  font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
  line-height: 1.68;
  color: #222;
}

.contact-estimate-btn.header-cta {
  box-shadow: none;
}

.contact-form-block {
  width: 100%;
  max-width: 100%;
}

.contact-form-block--panel {
  margin: 0;
  padding: 0;
  border: none;
}

.contact-page .contact-page-form .form-group label {
  color: #1a1a1a;
}

.contact-page .contact-page-form .req {
  color: var(--color-17);
}

.contact-form-grid {
  gap: 1rem 1.25rem;
}

.contact-phone-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.contact-phone-cc {
  flex: 0 0 auto;
  min-width: 4.5rem;
  max-width: 5.5rem;
  padding: 0.65rem 0.5rem;
  font-size: 0.9375rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: #fff;
  color: #1a1a1a;
}

.contact-phone-input {
  flex: 1;
  min-width: 0;
}

@media (max-width: 900px) {
  .contact-hero-split {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    grid-template-rows: unset;
  }

  .contact-hero-red,
  .contact-hero-intro-panel,
  .contact-hero-dark,
  .contact-hero-form-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-hero-red {
    min-height: min(420px, 70vh);
    padding: 2.5rem 1.25rem;
    justify-content: center;
    align-items: center;
  }

  .contact-hero-title {
    max-width: none;
    font-size: clamp(1.65rem, 9vw, 2.85rem);
    line-height: 1.1;
  }

  .contact-hero-intro-panel {
    padding: 2rem 1.5rem;
  }

  .contact-hero-form-panel {
    border-top: none;
    border-bottom: 1px solid #e5e5e5;
  }
}
