:root {
  --orange: #f2632f;
  --orange-dark: #d95424;
  --navy: #17264c;
  --navy-2: #22365f;
  --text: #273247;
  --muted: #5c6880;
  --white: #fff;
  --soft: #f7f8fb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

body.animations-ready .site-header {
  animation: slideDown 0.7s ease both;
}

.site-header {
  position: relative;
  z-index: 1000;
}

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

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

.wrap {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.topbar-inner,
.top-actions,
.nav-inner,
.estimate-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-inner {
  min-height: 42px;
}

.top-actions {
  justify-content: flex-end;
}

.top-actions a:not(.top-cta) {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.top-cta {
  padding: 7px 13px;
  border-radius: 2px;
  background: var(--navy);
  white-space: nowrap;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  border-bottom: 1px solid #e8eaf0;
}

.nav-inner {
  position: relative;
  min-height: 82px;
}

.brand img {
  width: 205px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #20283b;
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 39px;
  padding: 0 13px;
  border-radius: 7px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  color: inherit;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  min-width: 238px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--white);
  border: 1px solid #e8eaf0;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(23, 38, 76, 0.16);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}

.nav-dropdown-menu a {
  width: 100%;
  min-height: 38px;
  justify-content: flex-start;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  background: var(--orange);
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  min-height: 38px;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  color: var(--white);
  padding: 68px 0;
  background:
    linear-gradient(90deg, rgba(23, 38, 76, 0.98) 0%, rgba(23, 38, 76, 0.9) 46%, rgba(23, 38, 76, 0.38) 100%),
    url("assets/hero-bg.jpg") right center / cover no-repeat;
  border-bottom: 8px solid var(--orange);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: center;
}

.eyebrow,
.form-head span {
  display: inline-block;
  margin: 0 0 8px;
  color: #ffd7c8;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 650px;
  color: var(--white);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy > p {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
}

body.animations-ready .hero-copy .eyebrow,
body.animations-ready .hero-copy h1,
body.animations-ready .hero-copy > p,
body.animations-ready .hero-points {
  animation: heroTextIn 0.8s ease both;
}

body.animations-ready .hero-copy h1 {
  animation-delay: 0.12s;
}

body.animations-ready .hero-copy > p {
  animation-delay: 0.24s;
}

body.animations-ready .hero-points {
  animation-delay: 0.36s;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  background: rgba(240, 99, 47, 0.26);
  font-weight: 800;
  font-size: 13px;
}

.hero-points span,
.top-actions a:not(.top-cta),
.btn {
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.hero-points span:hover,
.top-actions a:not(.top-cta):hover,
.btn:hover {
  transform: translateY(-3px);
}

.hero-form {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 15, 34, 0.94);
}

body.animations-ready .hero-form {
  animation: formIn 0.9s ease 0.25s both, softFloat 5s ease-in-out 1.2s infinite;
}

.hero-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--orange), #ff946e);
}

.hero-form::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 38%;
  height: 180%;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  animation: formShine 5s ease-in-out infinite;
  pointer-events: none;
}

.contact-page-form {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-top: 6px solid var(--orange);
  border-radius: 8px;
  background: rgba(8, 16, 36, 0.96);
}

.contact-hero-form {
  justify-self: end;
  width: min(100%, 640px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.form-head {
  position: relative;
  margin: 0 0 18px;
  text-align: center;
}

.form-head h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(25px, 2.45vw, 34px);
  line-height: 1.12;
}

.form-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.form-mini-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 18px;
}

.form-mini-trust strong {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(242, 99, 47, 0.18);
  color: var(--white);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: block;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: 700 14px Poppins, Arial, sans-serif;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #ffb097;
  background: rgba(255, 255, 255, 0.12);
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

select {
  cursor: pointer;
}

select option {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

textarea {
  min-height: 112px;
  padding: 13px 14px;
  resize: vertical;
}

::placeholder {
  color: rgba(255, 255, 255, 0.84);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border: 0;
  border-radius: 5px;
  font-weight: 800;
  cursor: pointer;
}

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

.hero-form .btn-orange {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2.6s ease-in-out infinite;
}

.contact-page-form .btn-orange {
  width: 100%;
  min-height: 46px;
  font-size: 15px;
}

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

.form-status {
  width: min(1320px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 13px 16px;
  border-radius: 6px;
  background: #e8f7ee;
  color: #126333;
  font-weight: 700;
}

.hero-form .form-status,
.contact-page-form .form-status {
  width: 100%;
  margin: 0 0 16px;
}

.form-status + .form-head,
.form-status + input + .form-grid {
  margin-bottom: 14px;
}

.form-status-sent {
  border: 1px solid #a7e8be;
  box-shadow: 0 12px 28px rgba(18, 99, 51, 0.14);
}

.form-status-failed,
.form-status-missing,
.form-status-invalid {
  background: #fff0eb;
  color: var(--orange-dark);
}

.section {
  padding: 66px 0;
}

.page-hero {
  color: var(--white);
  padding: 88px 0;
  border-bottom: 8px solid var(--orange);
  background:
    linear-gradient(90deg, rgba(23, 38, 76, 0.96), rgba(23, 38, 76, 0.78)),
    url("assets/hero-bg.jpg") right center / cover no-repeat;
}

.page-hero-services {
  background:
    linear-gradient(90deg, rgba(23, 38, 76, 0.96), rgba(23, 38, 76, 0.78)),
    url("assets/service-long.jpg") center / cover no-repeat;
}

.page-hero-contact {
  padding: 64px 0;
  background:
    linear-gradient(90deg, rgba(23, 38, 76, 0.98), rgba(23, 38, 76, 0.82)),
    url("assets/contact-collage.jpg") center / cover no-repeat;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.about-banner {
  min-height: 370px;
  display: grid;
  align-items: center;
  padding: 42px 0;
  color: var(--white);
  border-bottom: 8px solid #1e6aa0;
  background:
    linear-gradient(90deg, rgba(7, 9, 20, 0.76), rgba(7, 9, 20, 0.72)),
    url("assets/hero-bg.jpg") center 42% / cover no-repeat;
}

.about-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  width: min(1180px, calc(100% - 180px));
}

.about-banner img {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  aspect-ratio: 1.03 / 0.72;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.about-banner-copy {
  justify-self: start;
  max-width: 620px;
  text-align: left;
}

.about-banner h1 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
}

.about-banner p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.about-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}

.btn-outline {
  border: 2px solid var(--white);
  background: rgba(23, 38, 76, 0.84);
  color: var(--white);
}

.page-hero-inner {
  max-width: 760px;
}

.page-hero h1 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
}

.center {
  text-align: center;
}

h2 {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
}

p {
  margin: 0 0 13px;
}

.section-lead {
  max-width: 780px;
  margin: 0 auto 32px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 46px;
  align-items: center;
}

.about-two-col,
.about-image-copy {
  display: grid;
  gap: 48px;
  align-items: center;
}

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

.about-story {
  padding-bottom: 34px;
}

.about-story p,
.about-highlight p,
.about-mission p {
  color: #171b29;
  font-size: 17px;
}

.about-image-copy {
  grid-template-columns: 390px 1fr;
}

.about-image-copy-reverse {
  grid-template-columns: 1fr 390px;
}

.about-rounded-img {
  width: 100%;
  aspect-ratio: 1.16 / 0.84;
  object-fit: cover;
  border-radius: 8px;
}

.about-mission {
  padding-top: 36px;
  padding-bottom: 82px;
}

.framed-img {
  width: 100%;
  border: 4px solid #eef0f6;
}

.estimate-bar {
  padding: 22px 0;
  color: var(--white);
  background: var(--navy);
}

.estimate-inner h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 2.2vw, 30px);
}

.section-icon {
  width: 170px;
  margin: 0 auto 8px;
}

.service-grid,
.reason-grid,
.faq-grid,
.testimonial-grid {
  display: grid;
  gap: 13px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-grid article,
.reason-grid article {
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  transition: transform 0.3s ease;
}

.service-grid > a {
  display: block;
  color: inherit;
}

.service-grid > a article {
  height: 100%;
}

.service-grid article:hover,
.reason-grid article:hover,
.testimonial-grid article:hover,
.contact-card-grid article:hover {
  transform: translateY(-6px);
}

.service-grid img,
.reason-grid img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-grid article:hover img,
.reason-grid article:hover img {
  transform: scale(1.05);
}

.service-grid span,
.reason-grid span {
  display: grid;
  min-height: 40px;
  place-items: center;
  padding: 7px;
  background: var(--orange);
  font-size: 14px;
}

.service-grid-detailed article {
  background: var(--white);
  color: var(--text);
  border: 1px solid #eef0f6;
  text-align: left;
}

.service-grid-detailed article div {
  padding: 18px;
  border-top: 5px solid var(--orange);
}

.service-grid-detailed h3 {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 19px;
}

.service-grid-detailed p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.local-hero {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(240, 99, 47, 0.72), rgba(23, 38, 76, 0.38)),
    url("assets/service-local.jpg") center / cover no-repeat;
  border-bottom: 8px solid rgba(34, 54, 95, 0.76);
}

.local-hero-inner {
  padding: 54px 0;
}

.local-hero h1 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
}

.local-hero p {
  margin: 0 auto 18px;
  max-width: 840px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.long-distance-hero {
  background:
    linear-gradient(90deg, rgba(240, 99, 47, 0.72), rgba(23, 38, 76, 0.38)),
    url("assets/service-long.jpg") center / cover no-repeat;
}

.interstate-hero {
  background:
    linear-gradient(90deg, rgba(240, 99, 47, 0.72), rgba(23, 38, 76, 0.38)),
    url("assets/service-long.jpg") center / cover no-repeat;
}

.residential-hero {
  background:
    linear-gradient(90deg, rgba(240, 99, 47, 0.72), rgba(23, 38, 76, 0.38)),
    url("assets/service-residential.jpg") center / cover no-repeat;
}

.packing-hero {
  background:
    linear-gradient(90deg, rgba(240, 99, 47, 0.72), rgba(23, 38, 76, 0.38)),
    url("assets/service-packing.jpg") center / cover no-repeat;
}

.loading-hero {
  background:
    linear-gradient(90deg, rgba(240, 99, 47, 0.72), rgba(23, 38, 76, 0.38)),
    url("assets/service-loading.jpg") center / cover no-repeat;
}

.furniture-hero {
  background:
    linear-gradient(90deg, rgba(240, 99, 47, 0.72), rgba(23, 38, 76, 0.38)),
    url("assets/service-furniture.jpg") center / cover no-repeat;
}

.junk-hero {
  background:
    linear-gradient(90deg, rgba(240, 99, 47, 0.72), rgba(23, 38, 76, 0.38)),
    url("assets/service-junk.jpg") center / cover no-repeat;
}

.commercial-hero {
  background:
    linear-gradient(90deg, rgba(240, 99, 47, 0.72), rgba(23, 38, 76, 0.38)),
    url("assets/service-commercial.jpg") center / cover no-repeat;
}

.local-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.local-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.6fr);
  gap: 42px;
  align-items: center;
}

.local-overview .framed-img,
.local-benefits .framed-img {
  border-radius: 12px;
}

.local-benefits {
  padding: 66px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(240, 99, 47, 0.84), rgba(23, 38, 76, 0.68)),
    url("assets/hero-bg.jpg") center / cover no-repeat;
  border-block: 8px solid rgba(34, 54, 95, 0.76);
}

.local-benefits .local-two-col {
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
}

.local-benefits h2 {
  color: var(--white);
}

.local-benefits p {
  color: rgba(255, 255, 255, 0.94);
}

.local-faq h2 {
  color: var(--orange);
}

.local-faq-list {
  display: grid;
  margin-top: 18px;
  border: 1px solid #20283b;
}

.local-faq-list details {
  border: 0;
  border-bottom: 1px solid #20283b;
  background: var(--white);
  color: var(--text);
}

.local-faq-list details:last-child {
  border-bottom: 0;
}

.local-faq-list details[open] {
  background: var(--orange);
  color: var(--white);
}

.local-faq-list summary {
  min-height: 39px;
  padding: 9px 13px;
}

.local-faq-list p {
  padding: 0 13px 13px;
  color: inherit;
}

.local-testimonials {
  padding: 78px 0 92px;
  color: var(--white);
  background:
    linear-gradient(rgba(7, 12, 24, 0.76), rgba(7, 12, 24, 0.76)),
    url("assets/contact-collage.jpg") center / cover no-repeat;
}

.local-testimonials h2 {
  color: var(--white);
}

.local-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

.local-testimonial-grid article {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.local-testimonial-grid article > p {
  margin: 0;
  padding: 22px 24px 12px;
  color: var(--muted);
  font-style: italic;
  font-weight: 600;
}

.local-testimonial-grid footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 24px 20px;
  font-weight: 800;
}

.local-testimonial-grid span {
  color: #f2b52f;
}

.local-contact-form {
  width: min(790px, 100%);
  margin: 0 auto;
}

.local-contact-form input,
.local-contact-form select,
.local-contact-form textarea {
  border: 2px solid #20283b;
  background: var(--white);
  color: var(--text);
}

.local-contact-form ::placeholder {
  color: #5c6880;
  opacity: 1;
}

.local-contact-form select:invalid {
  color: #5c6880;
}

.local-contact-form textarea {
  min-height: 96px;
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.why {
  padding: 70px 0;
  border-block: 10px solid rgba(240, 99, 47, 0.78);
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
}

.why-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 44px;
  align-items: center;
}

.why h2 {
  color: var(--white);
}

.why p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
}

.trust {
  padding-bottom: 88px;
}

.reasons {
  padding: 34px 0 72px;
  color: var(--white);
  background: var(--orange);
}

.handshake {
  width: min(265px, 70vw);
  margin: 0 auto 12px;
  animation: softFloat 4s ease-in-out infinite;
}

.reasons h2 {
  color: var(--white);
}

.section-lead-light {
  color: rgba(255, 255, 255, 0.94);
}

.reason-grid {
  grid-template-columns: repeat(4, 1fr);
}

.reason-grid span {
  background: var(--navy);
}

.faq {
  padding-top: 78px;
}

.qa-icon {
  width: 210px;
  margin: 0 auto 6px;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
}

details {
  background: var(--orange);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

summary {
  min-height: 42px;
  padding: 11px 15px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 15px 15px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
}

.testimonials {
  border-top: 10px solid var(--navy);
}

.review-mark {
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  margin: 0 auto 14px;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-grid {
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
}

.testimonial-grid article {
  overflow: hidden;
  border-radius: 6px;
  background: #05070d;
  color: var(--white);
}

.testimonial-grid article > p {
  min-height: 170px;
  padding: 25px 26px 12px;
  font-style: italic;
  font-weight: 600;
}

.testimonial-grid footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 26px;
  background: var(--orange);
  font-weight: 800;
}

.testimonial-grid span {
  color: #ffe16a;
}

.reviews-page {
  padding-top: 60px;
}

.reviews-page h1 {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.18;
  font-weight: 500;
}

.reviews-graphic {
  position: relative;
  width: 190px;
  height: 116px;
  margin: 0 auto 8px;
}

.reviews-graphic::before {
  content: "";
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 8px;
  height: 42px;
  border-radius: 12px 12px 6px 6px;
  background: #dce7f6;
  box-shadow: inset 0 -8px 0 #b7c9e3;
}

.reviews-graphic::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 32px;
  width: 38px;
  height: 38px;
  border: 7px solid #324b76;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 18px 24px 0 -11px #324b76;
}

.reviews-graphic span {
  position: absolute;
  top: 8px;
  width: 52px;
  height: 70px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(23, 38, 76, 0.2);
}

.reviews-graphic span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
}

.reviews-graphic span::after {
  content: "★★★★★";
  position: absolute;
  left: 9px;
  bottom: 12px;
  color: #ffc928;
  font-size: 9px;
  letter-spacing: 0;
}

.reviews-graphic span:nth-child(1) {
  left: 32px;
  top: 24px;
  transform: rotate(-8deg);
}

.reviews-graphic span:nth-child(2) {
  left: 70px;
  z-index: 1;
}

.reviews-graphic span:nth-child(3) {
  right: 32px;
  top: 22px;
  transform: rotate(8deg);
}

.reviews-lead {
  max-width: 820px;
  margin: 0 auto 44px;
  color: #0d1324;
  font-size: 17px;
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 66px 74px;
  text-align: left;
}

.review-wall article {
  transition: transform 0.3s ease;
}

.review-wall article:hover {
  transform: translateY(-6px);
}

.review-wall article > p {
  position: relative;
  min-height: 188px;
  margin: 0;
  padding: 22px 22px 24px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  color: #202230;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
}

.review-wall article > p::before,
.review-wall article > p::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -13px;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  background: var(--white);
}

.review-wall article > p::before {
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}

.review-wall footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 23px 0 0 24px;
}

.review-source {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.review-source.google {
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
}

.review-source.facebook {
  background: #1778f2;
  font-family: Arial, sans-serif;
}

.review-wall strong {
  display: block;
  color: var(--orange);
  font-size: 16px;
  font-weight: 500;
}

.stars {
  display: block;
  color: #ffc928;
  font-size: 23px;
  letter-spacing: 1px;
  line-height: 1;
  text-shadow:
    -1px -1px 0 #111,
    1px -1px 0 #111,
    -1px 1px 0 #111,
    1px 1px 0 #111;
}

.footer {
  padding: 54px 0;
  color: var(--white);
  background: linear-gradient(90deg, #844031, var(--navy));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.45fr 1.25fr;
  gap: 34px;
  align-items: start;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.footer-card {
  padding: 26px;
  border-radius: 22px;
  background: var(--white);
  color: var(--text);
  font-weight: 700;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card-grid article {
  min-height: 345px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  border: 3px solid var(--white);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 38, 76, 0.24), rgba(23, 38, 76, 0.28) 36%, rgba(240, 99, 47, 0.92)),
    var(--contact-img) center / cover no-repeat;
  box-shadow: 0 18px 38px rgba(23, 38, 76, 0.18);
  transition: transform 0.3s ease;
}

.contact-card-grid article div {
  padding: 28px;
}

.contact-card-grid span,
.contact-card-grid strong {
  display: block;
}

.contact-card-grid span {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.08;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.contact-card-grid strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.contact-main {
  background: var(--soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  max-width: 940px;
}

.eyebrow-orange {
  color: var(--orange);
}

.contact-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, 170px);
  gap: 12px;
  margin-top: 24px;
}

.contact-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid var(--white);
  border-radius: 8px;
}

.contact-photo-grid img:first-child {
  grid-row: span 2;
}

body.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.reveal-enabled .reveal.reveal-visible,
.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-grid .reveal,
.reason-grid .reveal,
.testimonial-grid .reveal,
.review-wall .reveal,
.contact-card-grid .reveal {
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes formIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes formShine {
  0%,
  55% {
    left: -45%;
  }
  100% {
    left: 130%;
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.018);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  body.reveal-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 940px) {
  .topbar-inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    min-height: 44px;
    touch-action: manipulation;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    display: none;
    z-index: 50;
    gap: 6px;
    padding: 12px;
    background: var(--white);
    border: 1px solid #e6e8ef;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 18px 34px rgba(23, 38, 76, 0.16);
  }

  .nav-menu.open {
    display: grid;
  }

  .nav-menu a {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    gap: 4px;
    min-width: 0;
    margin-top: 6px;
    box-shadow: none;
  }

  .hero-grid,
  .contact-hero-grid,
  .split,
  .local-two-col,
  .why-grid,
  .footer-grid,
  .contact-layout,
  .about-banner-inner,
  .about-two-col,
  .about-image-copy,
  .about-image-copy-reverse,
  .review-wall {
    grid-template-columns: 1fr;
  }

  .about-banner {
    min-height: auto;
    padding: 34px 0;
  }

  .about-banner-inner {
    width: min(100% - 22px, 1320px);
  }

  .about-banner-copy {
    justify-self: start;
    text-align: left;
  }

  .about-banner-actions {
    justify-content: flex-start;
  }

  .about-banner img {
    justify-self: start;
    max-width: 520px;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(23, 38, 76, 0.96), rgba(23, 38, 76, 0.84)),
      url("assets/hero-bg.jpg") center / cover no-repeat;
  }

  .contact-hero-form {
    justify-self: stretch;
    width: 100%;
  }

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

  .faq-grid,
  .testimonial-grid,
  .local-testimonial-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .review-wall {
    gap: 44px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 22px, 1320px);
  }

  .brand img {
    width: min(150px, 44vw);
  }

  .nav-inner {
    min-height: 72px;
  }

  .nav-menu {
    top: 72px;
  }

  .topbar {
    font-size: 12px;
  }

  .topbar-inner {
    gap: 8px;
  }

  .top-cta {
    white-space: normal;
    text-align: center;
  }

  .hero h1,
  .page-hero h1,
  .about-banner h1 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-copy > p,
  .page-hero p:not(.eyebrow),
  .about-banner p {
    font-size: 15px;
  }

  .top-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .form-grid,
  .service-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero-contact,
  .section {
    padding: 46px 0;
  }

  .hero-form,
  .contact-page-form {
    padding: 18px;
  }

  .estimate-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-grid article > p {
    min-height: auto;
  }
}
