:root {
  --navy: #071b3a;
  --navy-dark: #031126;
  --red: #d71920;
  --red-dark: #b9151b;
  --white: #ffffff;
  --light: #f6f8fb;
  --gray: #5f6775;
  --dark: #111827;
  --border: #e5e7eb;
  --gold: #f5b301;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

.container {
  width: min(100% - 3rem, 1800px);
  margin-inline: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -0.75rem;
}

.row > * {
  width: 100%;
  padding-inline: 0.75rem;
}

.g-3 {
  row-gap: 1rem;
}

.g-4 {
  row-gap: 1.5rem;
}

.g-5 {
  row-gap: 3rem;
}

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

.align-items-end {
  align-items: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.d-flex {
  display: flex;
}

.mx-auto {
  margin-inline: auto;
}

.mb-3 {
  margin-bottom: 1rem;
}

.w-100 {
  width: 100%;
}

.bg-white {
  background: var(--white);
}

.navbar {
  display: flex;
  align-items: center;
}

.navbar > .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  margin-right: 1rem;
}

.navbar-nav {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.collapse:not(.show) {
  display: none;
}

.navbar-toggler {
  width: 46px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
}

.navbar-toggler-icon {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
  box-shadow: 0 -7px 0 var(--navy), 0 7px 0 var(--navy);
}

.form-control,
.form-select {
  display: block;
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font: inherit;
}

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

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

a:hover {
  color: var(--red);
}

:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 12px 30px rgba(7, 27, 58, 0.08);
}

.top-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
}

.top-bar__grid {
  min-height: 42px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar i {
  color: var(--gold);
  font-style: normal;
  margin-right: 0.35rem;
}

.main-nav {
  min-height: 92px;
}

.logo-mark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  color: var(--navy);
  text-transform: uppercase;
}

.logo-mark__state {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-mark__name {
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-mark__tagline {
  margin-top: 0.35rem;
  color: var(--gray);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: none;
}

.navbar-nav {
  gap: 0.35rem;
}

.nav-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red);
}

.nav-dropdown {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  min-width: 230px;
  display: none !important;
  padding: 0.65rem;
  margin: 0;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(7, 27, 58, 0.12);
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  display: grid !important;
}

.nav-menu a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.nav-menu a:hover {
  background: var(--light);
  color: var(--red);
}

.header-cta {
  display: flex;
  align-items: center;
}

.header-cta {
  gap: 1rem;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  padding: 0.78rem 1.15rem;
  text-align: center;
}

.btn-lg {
  padding: 0.95rem 1.35rem;
  font-size: 1.05rem;
}

.btn-primary-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.2);
}

.btn-primary-red:hover,
.btn-primary-red:focus {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn-outline-navy {
  background: var(--white);
  border-color: rgba(7, 27, 58, 0.25);
  color: var(--navy);
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.18) 66%, rgba(255, 255, 255, 0) 100%),
    url("../images/house-painters.jpg") right center / 78% auto no-repeat,
    var(--light);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: var(--white);
  z-index: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 35% 80%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.76) 22%, rgba(255, 255, 255, 0) 48%);
  pointer-events: none;
}

.min-vh-hero {
  min-height: 700px;
  position: relative;
  z-index: 1;
}

.hero-card-col {
  position: static !important;
}

.hero-copy {
  max-width: 620px;
  padding: 3.6rem 0 4.7rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-section .eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 0.45rem;
  vertical-align: middle;
  background: var(--red);
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.4rem, 3.55vw, 3.95rem);
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-lede {
  max-width: 560px;
  margin: 1.25rem 0 1.35rem;
  color: var(--gray);
  font-size: 1.18rem;
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  padding: 0;
  margin: 0 0 1.65rem;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--navy);
  font-weight: 700;
}

.hero-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.hero-actions,
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions .btn {
  min-width: 210px;
  min-height: 58px;
  gap: 0.55rem;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.btn-play {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-size: 0.7rem;
  line-height: 1;
}

.btn-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--navy);
}

.trust-badges {
  margin-top: 1.45rem;
}

.trust-badges span {
  padding: 0.72rem 0.85rem;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
  color: var(--gray);
  font-size: 0.87rem;
  font-weight: 700;
}

.trust-badges strong {
  color: var(--navy);
}

.hero-visual {
  position: static;
  min-height: 0;
  margin: 0;
}

.estimate-card {
  position: absolute;
  top: 27.8rem;
  left: auto;
  right: clamp(7rem, 7.5vw, 9rem);
  bottom: auto;
  width: min(390px, 30vw);
  min-height: 112px;
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.35rem;
  border-left: 0;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 22px 48px rgba(3, 17, 38, 0.22);
  z-index: 3;
}

.estimate-card span,
.estimate-card strong,
.estimate-card a {
  display: block;
}

.estimate-card__icon {
  grid-row: 1 / span 2;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 1.7rem;
}

.estimate-card__icon::before {
  content: "";
  width: 30px;
  height: 30px;
  border: 3px solid var(--white);
  border-radius: 5px;
  box-shadow: inset 0 8px 0 rgba(255, 255, 255, 0.28);
}

.estimate-card .estimate-card__text {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.estimate-card strong {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 400;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.trust-grid article {
  min-height: 165px;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 1rem;
  align-content: center;
  padding: 1.45rem 1.3rem;
  background: var(--white);
  border-right: 1px solid var(--border);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid span {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  border: 3px solid var(--navy);
  font-weight: 900;
  font-size: 1.3rem;
}

.trust-grid h2 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.trust-grid p,
.section-heading p,
.section-lede,
.service-card p,
.process-grid p,
.areas-section p,
.contact-section p,
.site-footer p {
  color: var(--gray);
}

.section-block {
  padding: 5rem 0;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.service-card,
.review-card,
.estimate-form {
  height: 100%;
  padding: 1.55rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 27, 58, 0.05);
}

.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(7, 27, 58, 0.1);
}

.service-card span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
}

.service-card a {
  color: var(--red);
  font-weight: 900;
}

.why-section,
.process-section,
.contact-section {
  background: var(--light);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.why-list div {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
}

.why-list span {
  color: var(--red);
  font-weight: 900;
}

.why-list p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: 8px;
  background: var(--navy);
}

.project-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 17, 38, 0) 30%, rgba(3, 17, 38, 0.82) 100%);
}

.project-card div {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
}

.project-card span {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.process-grid article {
  padding: 1.45rem;
  border-top: 4px solid var(--red);
  border-radius: 8px;
  background: var(--white);
}

.process-grid span {
  display: block;
  margin-bottom: 1rem;
  color: var(--red);
  font-size: 2rem;
  font-weight: 900;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.area-grid span,
.area-grid a {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.area-grid a:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 12px 24px rgba(7, 27, 58, 0.08);
}

.expansion-areas {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.expansion-areas h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.area-grid--small span,
.area-grid--small a {
  background: var(--light);
  color: var(--gray);
  font-size: 0.93rem;
}

.page-hero {
  padding: 5rem 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 251, 0.86)), url("../images/house-painters.jpg") right center / cover no-repeat;
}

.page-hero__content {
  max-width: 820px;
}

.page-hero p {
  max-width: 720px;
  color: var(--gray);
  font-size: 1.15rem;
}

.content-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.25rem 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--navy);
  font-weight: 700;
}

.content-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.two-column-copy {
  columns: 2;
  column-gap: 2rem;
}

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

.reviews-section h2,
.reviews-section .eyebrow {
  color: var(--white);
}

.review-card {
  margin: 0;
}

.review-card span {
  color: var(--gold);
  font-weight: 900;
}

.review-card footer {
  color: var(--navy);
  font-weight: 900;
}

.final-cta {
  padding: 3rem 0;
  background: var(--red);
  color: var(--white);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.final-cta .eyebrow,
.final-cta h2 {
  color: var(--white);
}

.final-cta h2 {
  margin: 0;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-details {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-details a,
.contact-details p {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 1rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
}

.contact-details strong {
  color: var(--navy);
}

.contact-details span {
  color: var(--gray);
}

.estimate-form label {
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-weight: 800;
}

.estimate-form .form-control,
.estimate-form .form-select {
  min-height: 50px;
  border-color: var(--border);
  border-radius: 6px;
}

.estimate-form textarea.form-control {
  min-height: 140px;
}

.form-note {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--navy);
  font-weight: 800;
}

.match-request-section {
  background: var(--light);
}

.match-copy h2 {
  max-width: 520px;
}

.match-copy > p:not(.eyebrow) {
  color: var(--gray);
  font-size: 1.08rem;
}

.match-bullet-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}

.match-bullet-list div {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.match-bullet-list span {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 0.25rem;
  border-radius: 999px;
  background: var(--red);
}

.match-bullet-list p {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.talk-card {
  display: grid;
  gap: 0.3rem;
  max-width: 390px;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.talk-card strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.talk-card a {
  color: var(--red);
  font-size: 1.45rem;
  font-weight: 900;
}

.painter-match-form {
  padding: 2rem;
}

.match-form__header h2 {
  margin-bottom: 0.25rem;
}

.match-form__header p {
  color: var(--gray);
}

.match-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}

.match-pills span {
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: #eef3f8;
  color: var(--navy);
  font-weight: 900;
  font-size: 0.85rem;
}

.match-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4ebf2;
}

.match-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--red);
  transition: width 0.2s ease;
}

.match-step-label {
  margin: 0.65rem 0 1.4rem;
  color: var(--gray);
  font-weight: 900;
}

.match-step {
  padding: 0;
  margin: 0;
  border: 0;
}

.match-step legend {
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.15;
}

.field-help {
  margin-bottom: 1rem;
  color: var(--gray);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.option-card {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.option-card:has(input:checked) {
  border-color: var(--red);
  background: rgba(227, 27, 35, 0.06);
}

.option-card input,
.check-grid input,
.radio-row input,
.consent-row input {
  accent-color: var(--red);
}

.option-card input {
  width: 18px;
  height: 18px;
}

.match-field-label {
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-weight: 800;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.check-grid label,
.radio-row label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.radio-row {
  display: grid;
  gap: 0.5rem;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--light);
  color: var(--navy);
  font-weight: 700;
}

.consent-row input {
  margin-top: 0.25rem;
}

.match-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
}

.match-actions .btn {
  min-width: 136px;
}

.btn-soft {
  background: #eef3f8;
  color: var(--navy);
  font-weight: 900;
}

.btn-soft:hover {
  background: #e2eaf2;
  color: var(--navy);
}

.form-error {
  min-height: 1.25rem;
  margin: 1rem 0 0;
  color: var(--red);
  font-weight: 900;
}

.painter-match-form.is-complete .match-form__header,
.painter-match-form.is-complete .match-step,
.painter-match-form.is-complete .match-actions {
  display: none;
}

.match-thank-you {
  padding: 1.5rem;
  border: 1px solid rgba(227, 27, 35, 0.2);
  border-radius: 8px;
  background: rgba(227, 27, 35, 0.06);
}

.match-thank-you h3 {
  color: var(--navy);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.76);
}

.logo-mark--footer .logo-mark__name,
.site-footer h2 {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.site-footer ul {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

@media (max-width: 1199px) {
  .main-nav {
    min-height: 78px;
  }

  .mobile-actions {
    display: flex;
  }

  .navbar-collapse {
    padding: 1rem 0 1.25rem;
  }

  .navbar-nav {
    display: grid;
  }

  .nav-menu {
    position: static;
    display: none !important;
    padding: 0.25rem 0 0.25rem 1rem;
    border: 0;
    box-shadow: none;
  }

  .header-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .match-request-section .row {
    flex-direction: column-reverse;
  }

  .painter-match-form {
    padding: 1.35rem;
  }
}

@media (max-width: 767px) {
  .option-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .match-actions {
    display: grid;
  }

  .match-actions .btn {
    width: 100%;
  }

  .talk-card {
    max-width: none;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    width: 33.333333%;
  }

  .col-md-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.333333%;
  }

  .col-lg-5 {
    width: 41.666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.333333%;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }

  .col-xl-4 {
    width: 33.333333%;
  }
}

@media (min-width: 1600px) {
  .hero-section {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.18) 66%, rgba(255, 255, 255, 0) 100%),
      url("../images/house-painters.jpg") right center / 78% auto no-repeat,
      var(--light);
  }

  .min-vh-hero {
    min-height: 700px;
  }

  .hero-copy {
    padding-top: 3.6rem;
  }

  h1 {
    font-size: 4.35rem;
  }

  .hero-lede {
    font-size: 1.24rem;
  }

  .estimate-card {
    top: 29.6rem;
    left: auto;
    right: clamp(28rem, 29vw, 38rem);
  }
}

@media (min-width: 1900px) {
  .hero-section {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 33%, rgba(255, 255, 255, 0.74) 47%, rgba(255, 255, 255, 0.16) 64%, rgba(255, 255, 255, 0) 100%),
      url("../images/house-painters.jpg") right center / 78% auto no-repeat,
      var(--light);
  }

  .min-vh-hero {
    min-height: 720px;
  }

  .hero-copy {
    max-width: 780px;
    padding-top: 4rem;
  }

  h1 {
    font-size: 4.55rem;
  }

  .estimate-card {
    top: 30.4rem;
    right: clamp(30rem, 29vw, 42rem);
  }
}

@media (max-width: 991px) {
  .top-bar__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0.65rem 0;
    gap: 0.25rem;
    text-align: center;
  }

  .min-vh-hero {
    min-height: auto;
  }

  .hero-section {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(246, 248, 251, 0.72) 100%),
      url("../images/house-painters.jpg") center top / cover no-repeat,
      var(--light);
  }

  .hero-copy {
    max-width: 720px;
    padding: 3rem 0 1rem;
  }

  .hero-visual {
    min-height: 180px;
    margin-top: 0.5rem;
  }

  .estimate-card {
    position: static;
    width: min(100% - 1.25rem, 480px);
    max-width: 480px;
    margin: 1rem auto 2rem;
  }

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

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

@media (max-width: 767px) {
  .container {
    width: min(100% - 1.25rem, 1360px);
  }

  .logo-mark__name {
    font-size: 1.1rem;
  }

  .logo-mark__tagline {
    font-size: 0.62rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h1 span {
    white-space: normal;
  }

  .hero-list,
  .why-list,
  .area-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .final-cta__actions .btn {
    width: 100%;
  }

  .estimate-card {
    width: min(100% - 1.25rem, 480px);
    max-width: none;
    margin: 1rem auto 2rem;
  }

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

  .section-block {
    padding: 3.5rem 0;
  }

  .section-heading--split,
  .final-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .project-card,
  .project-card img {
    min-height: 280px;
    height: 280px;
  }

  .two-column-copy {
    columns: 1;
  }
}
