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

html {
  scroll-behavior: smooth;
}

:root {
  --orange: #e8821a;
  --orange-dark: #c96d0d;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --cream: #fdf6ee;
  --text: #333;
  --white: #fff;
  --green: #3aaa5f;
  --muted-light: #ccc;
  --muted-mid: #888;
  --muted-dark: #666;
  --star: #ffc107;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.02em;
}

.hero-inner,
.services-inner,
.ba-inner,
.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.top-bar {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

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

.logo-badge {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  padding: 6px;
  border: 3px solid var(--orange-dark);
}

.logo-badge--image {
  width: clamp(180px, 24vw, 340px);
  height: auto;
  min-height: 52px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  overflow: visible;
}

.logo-badge--image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  object-position: left center;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 13px;
}

.rating-text,
.review-date {
  font-size: 12px;
}

.rating-text {
  color: var(--muted-light);
}

.stars,
.s-stars,
.review-stars {
  color: var(--star);
  letter-spacing: 1px;
}

.stars {
  font-size: 15px;
}

.hero-rating {
  font-size: 20px;
  margin-bottom: 10px;
}

.hero-rating-label {
  color: #ddd;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.rating-stars-small {
  font-size: 12px;
}

.phone-cta {
  text-align: right;
}

.phone-cta small {
  display: block;
  color: #aaa;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phone-cta a,
.cta-phone a,
.form-or a,
.final-phone a {
  font-weight: 700;
  text-decoration: none;
}

.phone-cta a,
.final-phone a {
  font-family: "Oswald", sans-serif;
}

.phone-cta a {
  color: var(--orange);
  font-size: 22px;
  letter-spacing: 1px;
}

.trust-bar {
  background: var(--orange);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  padding: 10px 28px;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-item:last-child,
.footer-trust-item:last-child {
  border-right: none;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
  flex-shrink: 0;
}

.hero {
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.75) 55%, rgba(0, 0, 0, 0.3) 100%),
    url("https://cdn.ssvcs.org/pictures/ssw/soft-wash-banner.JPG") center / cover no-repeat;
  min-height: 540px;
  display: flex;
  align-items: center;
  padding: 60px 40px;
}

.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero h1 span,
.quote-form h3 span {
  color: var(--orange);
}

.hero-sub {
  color: #ddd;
  font-size: 15px;
  margin-top: 16px;
  max-width: 420px;
}

.hero-review {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 28px;
  max-width: 400px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.reviewer-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-review p,
.review-card blockquote {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  font-style: italic;
}

.reviewer-name,
.review-author {
  font-weight: 700;
  font-size: 13px;
  color: #111;
}

.reviewer-name {
  margin-top: 8px;
}

.review-date,
.review-meta {
  color: var(--muted-mid);
}

.verified {
  background: #4caf50;
  color: var(--white);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  margin-left: 6px;
}

.verified.tight {
  margin-left: 4px;
}

.quote-form {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.quote-form h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 18px;
  text-transform: uppercase;
  text-align: center;
}

.form-field {
  margin-bottom: 12px;
}

.form-field-hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 7px;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  transition: border-color 0.2s;
  background: #fafafa;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--orange);
}

.btn-submit,
.btn-primary,
.btn-white {
  border-radius: 7px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
}

.btn-submit,
.btn-primary {
  background: var(--orange);
  color: var(--white);
  transition: background 0.2s, transform 0.15s;
}

.btn-submit {
  width: 100%;
  border: none;
  padding: 15px;
  font-size: 16px;
  cursor: pointer;
}

.btn-submit:hover,
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.form-or {
  text-align: center;
  font-size: 13px;
  color: var(--muted-mid);
  margin-top: 10px;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  margin-top: 4px;
  margin-bottom: 14px;
}

.turnstile-wrap iframe {
  max-width: 100%;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #b3261e;
}

.btn-submit:disabled {
  cursor: wait;
  opacity: 0.8;
  transform: none;
  box-shadow: none;
}

.form-or a {
  color: var(--orange);
}

.proof-bar {
  background: var(--cream);
  padding: 28px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  border-bottom: 3px solid #eee;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-logo {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.platform {
  font-size: 20px;
  font-weight: 800;
}

.platform.google {
  color: #4285f4;
}

.platform.houzz {
  color: #73ba25;
}

.platform.yelp {
  color: #d32323;
}

.houzz-mark {
  font-size: 22px;
  font-weight: 900;
}

.proof-score {
  display: flex;
  flex-direction: column;
}

.s-stars {
  font-size: 16px;
}

.s-label,
.years-label {
  font-size: 12px;
  color: #555;
  font-weight: 600;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: #ddd;
}

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

.years-num {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.years-label {
  text-transform: uppercase;
}

.services-section,
.before-after-section,
.reviews-section {
  padding: 70px 40px;
}

.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-label-left {
  text-align: left;
}

.section-title {
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-title-break {
  display: inline;
}

.section-sub {
  text-align: center;
  color: var(--muted-dark);
  max-width: 550px;
  margin: 0 auto 40px;
  font-size: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card img,
.review-photo img,
.ba-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card img {
  transition: transform 0.4s;
}

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

.card-label {
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  padding: 30px 16px 16px;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-row {
  text-align: center;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 15px 36px;
  font-size: 16px;
}

.cta-phone {
  font-size: 15px;
  color: #555;
}

.cta-phone a {
  color: var(--dark);
}

.cta-phone a:hover {
  color: var(--orange);
}

.before-after-section {
  background: var(--cream);
}

.ba-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ba-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  aspect-ratio: 4 / 3;
}

.ba-label {
  position: absolute;
  bottom: 14px;
  background: var(--dark);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ba-label.before {
  left: 14px;
}

.ba-label.after {
  right: 14px;
  background: var(--orange);
}

.ba-content h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

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

.ba-content .section-label {
  text-align: center;
}

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

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  align-items: flex-start;
  margin: 0 auto;
  width: fit-content;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.checklist li::before {
  content: "\2713";
  width: 22px;
  height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.cta-band,
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
}

.cta-band {
  background: var(--orange);
}

.cta-band-text h3,
.final-cta h3 {
  color: var(--white);
  font-size: clamp(20px, 2.5vw, 28px);
  text-transform: uppercase;
}

.cta-band-text p,
.final-cta p {
  font-size: 14px;
  margin-top: 4px;
}

.cta-band-text p {
  color: rgba(255, 255, 255, 0.85);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  padding: 14px 30px;
  font-size: 15px;
  white-space: nowrap;
  transition: box-shadow 0.2s;
}

.btn-white:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.band-phone,
.final-phone {
  font-size: 14px;
  white-space: nowrap;
}

.band-phone,
.band-phone a {
  color: var(--white);
}

.band-phone a,
.final-phone a {
  font-size: 18px;
}

.reviews-section {
  background: var(--white);
}

.review-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

.review-row:first-of-type {
  margin-top: 40px;
}

.review-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 22px;
  border-left: 4px solid var(--orange);
}

.review-stars {
  font-size: 17px;
  margin-bottom: 8px;
}

.review-card blockquote {
  margin-bottom: 14px;
}

.review-meta {
  font-size: 12px;
}

.review-photo {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.photo-tags {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
}

.photo-tag {
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.photo-tag.after-tag {
  background: var(--orange);
}

.footer-trust {
  background: var(--cream);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 3px solid #e8e8e8;
}

.footer-trust-item {
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  border-right: 1px solid #ddd;
}

.check-icon {
  color: var(--green);
  font-size: 18px;
}

.final-cta {
  background: var(--dark2);
  padding-top: 50px;
  padding-bottom: 50px;
}

.final-cta p {
  color: #aaa;
}

.final-phone {
  color: var(--muted-light);
}

.final-phone a {
  color: var(--orange);
}

footer {
  background: var(--dark);
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

footer .logo-badge {
  width: 44px;
  height: 44px;
  font-size: 8px;
}

footer .logo-badge--image {
  width: clamp(120px, 18vw, 220px);
  min-height: 44px;
}

footer .logo-badge--image img {
  max-height: 80px;
  object-position: center;
}

footer p {
  color: var(--muted-dark);
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-inner,
  .ba-inner,
  .review-row {
    grid-template-columns: 1fr;
  }

  .top-bar {
    padding: 14px 24px;
  }

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

  .quote-form {
    max-width: 500px;
  }

  .cta-band,
  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-item {
    font-size: 11px;
    padding: 10px 16px;
  }

  .logo-badge--image {
    width: clamp(150px, 36vw, 260px);
  }
}

@media (max-width: 600px) {
  .top-bar,
  .hero,
  .services-section,
  .before-after-section,
  .reviews-section,
  .cta-band,
  .final-cta,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  body {
    background: #fffaf5;
  }

  .top-bar {
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .phone-cta {
    display: none;
  }

  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.08)),
      var(--orange);
  }

  .trust-item {
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    padding: 12px 10px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .trust-item svg {
    display: none;
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .hero {
    min-height: auto;
    background-position: 62% center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-rating {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }

  .hero-sub {
    max-width: none;
    font-size: 15px;
  }

  .hero-review {
    max-width: none;
    margin-top: 22px;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  }

  .quote-form {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .quote-form h3 {
    font-size: 22px;
  }

  .btn-submit,
  .btn-primary,
  .btn-white {
    width: 100%;
    text-align: center;
  }

  .services-section,
  .before-after-section,
  .reviews-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-title,
  .ba-content h2 {
    line-height: 1.08;
  }

  .section-title-break {
    display: none;
  }

  .section-sub,
  .ba-content p {
    font-size: 15px;
  }

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

  .service-card {
    aspect-ratio: 16 / 11;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  }

  .card-label {
    padding: 34px 18px 18px;
    font-size: 20px;
  }

  .cta-row,
  .cta-band,
  .final-cta {
    gap: 14px;
  }

  .cta-phone,
  .final-phone,
  .cta-band-text,
  .cta-band-right,
  .final-cta-right {
    width: 100%;
    text-align: center;
  }

  .proof-bar {
    gap: 12px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr;
    background: #fff;
    border-bottom: 1px solid #eee3d7;
  }

  .proof-divider {
    display: none;
  }

  .proof-item {
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    background: var(--cream);
    border: 1px solid #f0dfcf;
    border-radius: 16px;
  }

  .ba-inner,
  .review-row {
    gap: 22px;
  }

  .ba-image-wrap,
  .review-photo {
    border-radius: 18px;
  }

  .review-card {
    border-left-width: 0;
    border-top: 4px solid var(--orange);
    border-radius: 16px;
    padding: 20px;
  }

  .final-cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-trust-item {
    justify-content: center;
    padding: 14px 16px;
    font-size: 13px;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .footer-trust-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .cta-band,
  .final-cta {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .cta-band-text h3,
  .final-cta h3 {
    font-size: 26px;
  }

  .final-phone {
    text-align: left;
  }

  .logo-badge--image {
    width: min(220px, 58vw);
    margin: 0 auto;
  }

  .logo-badge--image img {
    max-height: 88px;
    object-position: center;
  }
}
