:root {
  --font-display: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --navy: #042b4f;
  --deep: #061826;
  --blue: #0879b9;
  --header-blue: #0879b9;
  --sky: #5ec3e6;
  --orange: #ff9f1c;
  --gold: #ffc857;
  --white: #ffffff;
  --mist: #f3f8fb;
  --line: #d9e6ee;
  --ink: #102232;
  --muted: #5d7080;
  --shadow: 0 22px 70px rgba(4, 43, 79, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  padding-bottom: 78px;
  color: var(--ink);
  font-family: var(--font-display);
  background: var(--white);
  line-height: 1.55;
  max-width: 100%;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 30;
  padding: 10px 14px;
  margin: 8px;
  color: var(--white);
  background: var(--navy);
}

.topbar {
  display: none;
}

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

.header-bar {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(circle at 11% 0%, rgba(94, 195, 230, 0.24), transparent 30%),
    linear-gradient(180deg, #075f9f 0%, #043d73 58%, #052f5b 100%);
  box-shadow: 0 12px 34px rgba(4, 43, 79, 0.18);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1380px, calc(100% - 40px));
  min-height: 120px;
  margin: 0 auto;
  padding: 8px 0 14px;
  gap: clamp(16px, 1.8vw, 28px);
}

.brand {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-bottom: 0;
}

.brand img {
  width: clamp(215px, 17vw, 300px);
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  gap: clamp(12px, 1.45vw, 21px);
  color: var(--white);
  font-size: clamp(15px, 1.04vw, 18px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  padding-top: 12px;
}

.nav-links > a:not(.nav-cta),
.nav-menu-trigger {
  transition: color 160ms ease;
}

.nav-links > a:not(.nav-cta):hover,
.nav-links > a:not(.nav-cta):focus,
.nav-menu:hover .nav-menu-trigger,
.nav-menu:focus-within .nav-menu-trigger,
.nav-menu.is-open .nav-menu-trigger {
  color: var(--gold);
}

.nav-links > a.is-active,
.nav-links > a[aria-current="page"] {
  color: var(--gold);
  position: relative;
}

.nav-links > a.is-active::after,
.nav-links > a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 50px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  box-shadow: 0 5px 12px rgba(255, 159, 28, 0.34);
  transform: translateX(-50%);
}

.header-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.header-brand-strip {
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  color: rgba(6, 24, 38, 0.82);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  background: var(--white);
  border-bottom: 1px solid rgba(217, 230, 238, 0.72);
}

.header-brand-strip span {
  display: block;
  width: 100%;
  text-align: center;
}

.nav-links a,
.nav-menu-trigger {
  white-space: nowrap;
}

.nav-menu {
  position: relative;
  /* Keep the hover target connected while the cursor moves from the
     top-level button down into the dropdown. */
  padding-block: 14px;
  margin-block: -14px;
}

.nav-menu::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 20px;
}

.nav-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: currentColor;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-menu-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-menu.is-open .nav-menu-trigger::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 245px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown,
.nav-menu.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  padding: 10px 12px;
  color: var(--navy);
  border-radius: 6px;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  background: var(--mist);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 9px 22px rgba(255, 159, 28, 0.32);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-phone-header {
  flex: 0 0 auto;
  align-self: center;
  margin-top: 18px;
}

.nav-phone-menu {
  display: none !important;
}

.nav-cta:hover,
.nav-cta:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(255, 159, 28, 0.38);
}

.nav-phone-icon {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/coastal-home-hero-clean.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.72;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 22, 36, 0.95) 0%, rgba(4, 43, 79, 0.82) 42%, rgba(4, 43, 79, 0.35) 100%),
    radial-gradient(circle at 15% 12%, rgba(94, 195, 230, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(6, 24, 38, 0.22), rgba(6, 24, 38, 0.72));
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 540px);
  align-items: center;
  gap: 54px;
  width: min(1180px, calc(100% - 36px));
  min-height: 860px;
  margin: 0 auto;
  padding: 74px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3 {
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 19px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.button.primary {
  color: var(--deep);
  background: var(--orange);
  box-shadow: 0 15px 34px rgba(255, 159, 28, 0.34);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.button.secondary.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.promise-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.trust-row span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.estimate-card {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 950;
}

.form-badge img {
  width: 88px;
}

.estimate-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.estimate-card label {
  display: grid;
  gap: 6px;
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.estimate-card input,
.estimate-card select,
.estimate-card textarea {
  width: 100%;
  border: 1px solid #c6d6df;
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
}

.estimate-card textarea {
  resize: vertical;
}

.hero-estimate-card {
  align-self: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  scroll-margin-top: 150px;
}

.hero-estimate-card h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
}

.hero-estimate-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.hero-estimate-card .hero-actions {
  margin-top: 22px;
}

.crm-estimate {
  overflow: hidden;
  padding: 18px;
}

.crm-leadform {
  display: block;
  width: 100%;
  min-height: 600px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
}

.hero-leadform {
  min-height: 620px;
  box-shadow: var(--shadow);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 36px));
  margin: 36px auto 0;
  position: relative;
  z-index: 5;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-band div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.proof-band div:last-child {
  border-right: 0;
}

.proof-band strong {
  display: block;
  color: var(--blue);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.12;
}

.proof-band span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.proof-band-areas {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  align-items: center;
  gap: 18px 24px;
  padding: 18px 24px;
}

.proof-band-areas-intro {
  padding: 0;
  border-right: 0;
}

.proof-band-areas-intro strong {
  font-size: clamp(20px, 2vw, 26px);
}

.proof-band-areas-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 0;
  border-right: 0;
}

.proof-band-areas-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fbfd;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  line-height: 1.2;
}

.proof-band-areas-links a:hover {
  border-color: #9ccae4;
  background: #eef7fc;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-intro {
  color: var(--muted);
  font-size: 18px;
}

.section-intro a {
  color: var(--blue);
  font-weight: 950;
}

.section-copy {
  max-width: 680px;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
}

.intro-grid {
  display: grid;
  gap: 18px;
}

.intro-grid article,
.service-card,
.timeline article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.intro-grid article {
  padding: 24px;
}

.intro-grid p,
.timeline p,
.faq-list p {
  color: var(--muted);
}

.services-section {
  border-top: 1px solid var(--line);
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(217, 230, 238, 0.95);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(4, 43, 79, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(4, 43, 79, 0.12);
}

.service-card-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--mist);
}

.service-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

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

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 22px 24px;
}

.service-card h3 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.15;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c56f1a;
  font-size: 16px;
  font-weight: 850;
  transition: color 160ms ease;
}

.service-card-link::after {
  content: "›";
  font-size: 22px;
  line-height: 1;
}

.service-card-link:hover,
.service-card-link:focus {
  color: var(--orange);
}

.service-card-badge {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(4, 43, 79, 0.18);
}

.service-card-badge svg {
  width: 28px;
  height: 28px;
}

.gallery-section {
  background:
    linear-gradient(180deg, var(--mist), var(--white));
  border-top: 1px solid var(--line);
}

.gallery-inner {
  padding-top: 88px;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  align-items: end;
  gap: 42px;
  margin-bottom: 30px;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-heading p:not(.eyebrow) {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 17px;
}

.project-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.slide-track {
  position: relative;
  min-height: 520px;
}

.project-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.project-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.project-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.project-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 38, 0.78), rgba(6, 24, 38, 0.18) 62%, rgba(6, 24, 38, 0.58)),
    linear-gradient(180deg, transparent, rgba(6, 24, 38, 0.7));
}

.slide-caption {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  max-width: 520px;
  color: var(--white);
}

.slide-caption span,
.project-grid span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.slide-caption h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-button::before {
  content: "";
  position: absolute;
  top: 16px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
}

.slider-button.prev {
  left: 18px;
}

.slider-button.prev::before {
  left: 18px;
  transform: rotate(-135deg);
}

.slider-button.next {
  right: 18px;
}

.slider-button.next::before {
  right: 18px;
  transform: rotate(45deg);
}

.slider-dots {
  position: absolute;
  right: 34px;
  bottom: 42px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--orange);
  border-color: var(--orange);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.project-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.project-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-grid div {
  padding: 22px;
}

.project-grid h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.reviews-section {
  padding: 96px 0 0;
  border-top: 1px solid var(--line);
}

.reviews-section-intro,
.reviews-section-footer {
  padding-top: 0;
  padding-bottom: 0;
}

.reviews-section-intro {
  margin-bottom: 34px;
}

.reviews-section-footer {
  padding-top: 34px;
  padding-bottom: 96px;
}

.reviews-section-pre-estimate {
  padding: 28px 0 20px;
  border-top: 0;
  background: #f8fbfd;
}

.reviews-section-pre-estimate .reviews-section-intro {
  margin-bottom: 18px;
}

.reviews-section-pre-estimate .reviews-section-intro .section-heading h2 {
  font-size: clamp(28px, 4.5vw, 42px);
}

.reviews-section-pre-estimate .reviews-section-intro .section-intro {
  font-size: 16px;
}

.reviews-section-pre-estimate .review-marquee-viewport {
  padding-bottom: 8px;
}

.review-marquee {
  width: 100%;
  overflow: hidden;
}

.review-marquee-viewport {
  position: relative;
  overflow: hidden;
  padding: 10px 0 18px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.review-marquee-viewport::before,
.review-marquee-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(180px, 16vw);
  z-index: 2;
  pointer-events: none;
}

.review-marquee-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.88) 42%, transparent 100%);
}

.review-marquee-viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, rgba(255, 255, 255, 0.88) 42%, transparent 100%);
}

.review-marquee-track {
  display: flex;
  width: max-content;
  animation: review-marquee-scroll 48s linear infinite;
  will-change: transform;
}

.review-marquee.is-paused .review-marquee-track {
  animation-play-state: paused;
}

.review-marquee-set {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.review-marquee-card {
  flex: 0 0 auto;
  display: grid;
  align-content: space-between;
  width: min(480px, 82vw);
  min-height: 280px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(243, 248, 251, 0.85), rgba(255, 255, 255, 0)),
    var(--white);
  box-shadow: 0 16px 40px rgba(4, 43, 79, 0.08);
}

@keyframes review-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.review-marquee-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.stars {
  color: var(--orange);
  font-size: 22px;
  letter-spacing: 0;
}

.review-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.review-google-badge svg {
  width: 16px;
  height: 16px;
}

.review-marquee-card p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 650;
  line-height: 1.55;
}

.review-author {
  display: block;
  margin-top: 22px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.review-marquee-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px auto 0;
  padding: 0 20px;
}

.review-pause-button,
.review-all-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: -0.015em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.review-pause-button {
  padding: 10px 16px;
  color: rgba(4, 43, 79, 0.76);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(4, 43, 79, 0.14);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.review-pause-button:hover,
.review-pause-button:focus-visible {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(4, 43, 79, 0.12);
  transform: translateY(-1px);
}

.review-pause-button[aria-pressed="true"] {
  color: var(--navy);
  background: rgba(255, 200, 87, 0.22);
  border-color: rgba(255, 159, 28, 0.34);
}

.review-all-button {
  padding: 11px 20px;
  color: var(--deep);
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border: 1px solid rgba(255, 159, 28, 0.48);
  box-shadow: 0 14px 30px rgba(255, 159, 28, 0.22);
}

.review-all-button:hover,
.review-all-button:focus-visible {
  box-shadow: 0 18px 34px rgba(255, 159, 28, 0.28);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .review-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    gap: 24px;
  }

  .review-marquee-set[aria-hidden="true"] {
    display: none;
  }

  .review-marquee-set {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }

  .review-marquee-viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .review-marquee-viewport::before,
  .review-marquee-viewport::after {
    display: none;
  }
}

.reviews-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 24px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.reviews-cta h3 {
  margin-bottom: 4px;
  color: var(--white);
}

.reviews-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.promise-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 54px;
  padding: 82px max(18px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, var(--deep), var(--navy) 56%, #064f79);
}

.mascot-panel {
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(94, 195, 230, 0.18), rgba(255, 159, 28, 0.18)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.mascot-panel img {
  width: min(600px, 104%);
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.3));
}

.promise-copy h2,
.promise-copy h3 {
  color: var(--white);
}

.promise-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.promise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.promise-list span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline article {
  position: relative;
  min-height: 260px;
  padding: 24px;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 950;
}

.areas-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  border-top: 1px solid var(--line);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 12px;
}

.area-list span,
.area-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.area-list a:hover,
.area-list a:focus {
  border-color: rgba(8, 121, 185, 0.38);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(4, 43, 79, 0.08);
}

.area-list a::after {
  content: ">";
  margin-left: 8px;
  color: var(--blue);
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  padding: 20px 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
}

.faq-list p {
  margin-bottom: 22px;
}

.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 70px max(18px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--navy);
}

.cta-section h2 {
  margin-bottom: 0;
  color: var(--white);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 42px max(18px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--deep);
}

.footer img {
  width: 250px;
  margin-bottom: 12px;
}

.footer p {
  max-width: 420px;
  margin-bottom: 0;
}

.footer address {
  display: grid;
  gap: 8px;
  align-content: start;
  font-style: normal;
  text-align: right;
}

.footer a {
  color: var(--white);
  font-weight: 850;
}

.footer-rich {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

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

.footer-contact address {
  text-align: left;
}

.footer-cta {
  display: inline-flex;
  margin-top: 16px;
}

.breadcrumbs {
  padding: 18px max(18px, calc((100vw - 1180px) / 2)) 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: rgba(4, 43, 79, 0.35);
}

.breadcrumbs a {
  color: var(--navy);
}

.breadcrumbs [aria-current="page"] {
  color: var(--muted);
}

.subpage-reviews {
  padding: 56px max(18px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(94, 195, 230, 0.08), rgba(255, 255, 255, 0));
}

.subpage-reviews-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.subpage-reviews-heading h2 {
  max-width: 640px;
  margin-bottom: 28px;
}

.subpage-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.subpage-review-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.subpage-review-card .stars {
  margin-bottom: 12px;
  color: #f5a623;
  letter-spacing: 2px;
}

.subpage-review-card p {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.service-page-hero {
  padding: 88px max(18px, calc((100vw - 1180px) / 2)) 76px;
  color: var(--white);
  --hero-image: url("assets/coastal-home-hero-clean.webp");
  background:
    linear-gradient(90deg, rgba(6, 24, 38, 0.94) 0%, rgba(4, 43, 79, 0.82) 46%, rgba(4, 43, 79, 0.46) 72%, rgba(4, 43, 79, 0.22) 100%),
    linear-gradient(180deg, rgba(6, 24, 38, 0.12), rgba(6, 24, 38, 0.28)),
    var(--hero-image) center / cover;
}

.service-page-hero--house-painters {
  --hero-image: url("assets/hero-house-painters.webp");
}

.service-page-hero--interior-painting {
  --hero-image: url("assets/ai-interior-crew.webp");
}

.service-page-hero--exterior-painting {
  --hero-image: url("assets/coastal-home-hero-clean.webp");
}

.service-page-hero--cabinet-painting {
  --hero-image: url("assets/ai-cabinet-crew.webp");
}

.service-page-hero--drywall-repair {
  --hero-image: url("assets/hero-drywall-repair.webp");
}

.service-page-hero--pressure-washing {
  --hero-image: url("assets/hero-pressure-washing.webp");
}

.service-page-hero--commercial-painting {
  --hero-image: url("assets/hero-commercial-painting.webp");
}

.service-page-hero--area-gulf-breeze {
  --hero-image: url("assets/hero-area-gulf-breeze.webp");
}

.service-page-hero--area-pace {
  --hero-image: url("assets/hero-area-pace.webp");
}

.service-page-hero--area-navarre {
  --hero-image: url("assets/hero-area-navarre.webp");
}

.service-page-hero--area-perdido-key {
  --hero-image: url("assets/hero-area-perdido-key.webp");
}

.service-page-hero--area-milton {
  --hero-image: url("assets/hero-area-milton.webp");
}

.service-page-hero--area-cantonment {
  --hero-image: url("assets/hero-area-cantonment.webp");
}

.service-page-hero h1 {
  max-width: 860px;
}

.service-page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.service-page-hero .hero-actions {
  margin-top: 24px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.service-main {
  display: grid;
  gap: 28px;
}

.content-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.content-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 40px);
}

.content-panel p,
.content-panel li {
  color: var(--muted);
}

.service-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-photo-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-photo-grid figcaption {
  padding: 14px 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
}

.service-sidebar {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.sidebar-card h2,
.sidebar-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.sidebar-card p {
  color: var(--muted);
}

.service-links {
  display: grid;
  gap: 9px;
}

.service-links a {
  padding: 11px 12px;
  color: var(--navy);
  font-weight: 900;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.mini-form {
  display: grid;
  gap: 11px;
}

.mini-form input,
.mini-form select,
.mini-form textarea {
  width: 100%;
  padding: 11px;
  border: 1px solid #c6d6df;
  border-radius: 6px;
}

.service-faq {
  display: grid;
  gap: 10px;
}

.service-faq details {
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-faq summary {
  padding: 17px 0;
  color: var(--navy);
  font-weight: 950;
  cursor: pointer;
}

.service-faq p {
  margin-bottom: 18px;
}

.related-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-areas span {
  padding: 8px 12px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.service-page-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-page-proof div {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.service-page-proof div:last-child {
  border-right: 0;
}

.service-page-proof strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.12;
}

.service-page-proof span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.service-page-proof-areas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
  padding: 20px max(18px, calc((100vw - 1180px) / 2));
}

.service-page-proof-areas-intro {
  flex: 0 0 auto;
  padding: 0;
  border-right: 0;
  text-align: left;
}

.service-page-proof-areas-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.service-page-proof-areas-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fbfd;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  line-height: 1.2;
}

.service-page-proof-areas-links a:hover {
  border-color: #9ccae4;
  background: #eef7fc;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.service-feature-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.service-feature-grid h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
}

.service-feature-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.service-process-grid article {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.service-process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  background: var(--blue);
  border-radius: 50%;
}

.service-process-grid h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 20px;
}

.service-process-grid p {
  margin: 0;
  font-size: 15px;
}

.service-page-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 32px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.service-page-cta h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 38px);
}

.service-page-cta p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.service-page-cta .hero-actions {
  margin: 0;
  flex-shrink: 0;
}

.sidebar-trust-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-trust-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.sidebar-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
}

.content-panel-lead {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.6;
}

.sticky-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: none;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(6, 24, 38, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.sticky-action-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: min(240px, 44vw);
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 950;
}

.sticky-action-bar .sticky-call {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.sticky-action-bar .sticky-estimate {
  color: var(--deep);
  background: var(--orange);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 26;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 58px;
  min-height: 58px;
  padding: 10px 14px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 121, 185, 0.96), rgba(4, 43, 79, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(4, 43, 79, 0.26), 0 0 0 5px rgba(94, 195, 230, 0.12);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: 0 22px 48px rgba(4, 43, 79, 0.32), 0 0 0 5px rgba(255, 200, 87, 0.2);
  transform: translateY(-2px) scale(1.01);
}

.back-to-top span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--deep);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 50%;
}

.back-to-top small {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}


.reviews-page-hero {
  padding: clamp(76px, 9vw, 132px) 0 clamp(46px, 7vw, 86px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 8%, rgba(94, 195, 230, 0.28), transparent 34%),
    linear-gradient(135deg, #043d73 0%, #042b4f 56%, #061826 100%);
}

.reviews-page-hero .section-copy {
  padding: 0;
  color: var(--white);
}

.reviews-page-hero .eyebrow,
.reviews-page-hero .section-intro {
  color: rgba(255, 255, 255, 0.82);
}

.reviews-page-section {
  padding: 72px 0 88px;
  background: #f8fbfd;
}

.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.review-page-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(4, 43, 79, 0.1);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(4, 43, 79, 0.08);
}

.review-page-card .stars {
  font-size: 19px;
}

.review-page-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.58;
}

.review-page-card footer {
  display: grid;
  gap: 2px;
  color: var(--navy);
  font-weight: 950;
}

.review-page-card footer span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.reviews-page-note {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 22px;
  padding: 14px 18px;
  color: #31546d;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(4, 43, 79, 0.08);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
}

.reviews-page-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
}

@media (max-width: 960px) {
  .reviews-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .reviews-page-hero {
    padding: 34px 0 42px;
  }

  .review-marquee-actions {
    margin-top: 4px;
  }

  .review-pause-button,
  .review-all-button {
    min-height: 42px;
    font-size: 14px;
  }

  .reviews-page-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .reviews-page-note,
  .reviews-page-cta {
    width: calc(100% - 24px);
  }
}

@media (max-width: 1180px) {
  .nav {
    width: min(100% - 28px, 1120px);
    gap: 14px;
  }

  .brand {
    margin-bottom: 0;
  }

  .brand img {
    width: 240px;
  }

  .nav-links {
    gap: 10px;
    font-size: 15px;
    padding-top: 14px;
  }

  .nav-phone-header {
    padding: 11px 16px;
    font-size: 15px;
    margin-top: 14px;
  }
}

@media (max-width: 960px) {
  .nav {
    min-height: 92px;
    padding-bottom: 14px;
  }

  .brand {
    margin-bottom: 0;
  }

  .brand img {
    width: 210px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-phone-header {
    display: none;
  }

  .header-brand-strip {
    padding: 9px 16px 8px;
    font-size: 15px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    color: var(--navy);
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(4, 43, 79, 0.12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-phone-menu {
    display: inline-flex !important;
    justify-content: center;
    margin-top: 8px;
  }

  .nav-menu {
    display: grid;
    padding-block: 0;
    margin-block: 0;
  }

  .nav-menu::before {
    display: none;
  }

  .nav-menu-trigger {
    width: 100%;
    padding: 12px;
    text-align: left;
    font-weight: 950;
  }

  .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 8px;
    padding: 0 0 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu:hover .nav-dropdown,
  .nav-menu:focus-within .nav-dropdown {
    transform: none;
  }

  .nav-menu.is-open .nav-dropdown {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    padding: 9px 12px;
    color: var(--muted);
    font-size: 14px;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
    justify-content: center;
    font-size: 16px;
    padding: 13px 18px;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content,
  .intro-section,
  .gallery-heading,
  .service-layout,
  .promise-section,
  .areas-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 62px 0 42px;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .estimate-card {
    max-width: 620px;
  }

  .proof-band,
  .service-grid,
  .project-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .promise-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .mascot-panel {
    min-height: 280px;
  }

  .footer,
  .reviews-cta,
  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-sidebar {
    position: static;
  }

  .footer address {
    text-align: left;
  }

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

  .subpage-reviews-grid {
    grid-template-columns: 1fr;
  }

  .estimate-section-grid {
    grid-template-columns: 1fr;
  }

  .estimate-section-shell {
    padding: 24px;
  }

  .estimate-card-enhanced {
    max-width: none;
    margin-left: 0;
  }

  .proof-band-areas {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 180px;
  }

  .header-brand-strip {
    font-size: 13px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 22, 36, 0.94) 0%, rgba(4, 43, 79, 0.88) 58%, rgba(4, 43, 79, 0.78) 100%),
      radial-gradient(circle at 18% 8%, rgba(94, 195, 230, 0.18), transparent 34%);
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .sticky-action-bar {
    display: flex;
    gap: 8px;
    padding: 10px;
  }

  .sticky-action-bar a {
    width: 50%;
    min-height: 48px;
    padding-inline: 10px;
    font-size: 14px;
  }

  .back-to-top {
    right: 14px;
    bottom: 82px;
    min-width: 52px;
    min-height: 52px;
    padding: 9px 11px;
  }

  .back-to-top small {
    display: none;
  }

  .proof-band {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    grid-template-columns: 1fr;
  }

  .proof-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .project-grid,
  .service-photo-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .slide-track {
    min-height: 430px;
  }

  .project-slide img {
    height: 430px;
  }

  .slide-caption {
    left: 22px;
    right: 22px;
    bottom: 66px;
  }

  .slider-button {
    display: none;
  }

  .slider-dots {
    left: 22px;
    right: auto;
    bottom: 28px;
  }

  .service-card,
  .timeline article {
    min-height: auto;
  }

  .mascot-panel img {
    width: 118%;
    max-width: none;
  }

  .reviews-section {
    padding-top: 68px;
  }

  .reviews-section-footer {
    padding-bottom: 68px;
  }

  .review-marquee-card {
    width: min(360px, 84vw);
    min-height: auto;
    padding: 22px 20px;
  }

  .service-page-proof {
    grid-template-columns: 1fr 1fr;
  }

  .service-page-proof div:nth-child(2n) {
    border-right: 0;
  }

  .service-page-proof div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .service-feature-grid,
  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-page-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }

  .service-photo-grid {
    grid-template-columns: 1fr;
  }

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

  .subpage-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage reference refresh */
.header-bar {
  background: linear-gradient(180deg, #064f87 0%, #043d73 100%);
}

.header-accent,
.header-brand-strip {
  display: none;
}

.nav {
  width: min(1480px, calc(100% - 56px));
  min-height: 98px;
  padding: 4px 0 8px;
}

.brand {
  margin-bottom: 0;
  align-items: center;
}

.brand img {
  width: clamp(210px, 17vw, 290px);
}

.nav-links {
  gap: clamp(14px, 1.5vw, 26px);
  padding-top: 4px;
  font-size: clamp(14px, 0.95vw, 16px);
}

.nav-links > a:not(.nav-cta),
.nav-menu-trigger {
  position: relative;
  padding-bottom: 9px;
}

.nav-links > a.is-active::after,
.nav-links > a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.nav-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.nav-phone-header {
  margin-top: 0;
  padding: 11px 20px;
  font-size: 15px;
  color: var(--white);
  background: linear-gradient(135deg, #ff9416, #ffad22);
  border-radius: 999px;
}

.nav-estimate-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-estimate-header:hover,
.nav-estimate-header:focus {
  color: var(--navy);
  background: var(--white);
  transform: translateY(-1px);
}

.hero-reference {
  min-height: 770px;
  color: var(--navy);
  background: #f8fbfd;
}

.hero-reference .hero-media {
  background-image: url("assets/coastal-home-hero-clean.webp");
  background-position: 72% center;
  background-size: cover;
  opacity: 1;
  transform: none;
}

.hero-reference .hero-overlay {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 24%, rgba(255, 255, 255, 0.78) 43%, rgba(255, 255, 255, 0.16) 68%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(circle at 26% 54%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.54) 28%, rgba(255, 255, 255, 0) 52%);
}

.hero-reference .hero-content {
  grid-template-columns: minmax(0, 720px) minmax(360px, 1fr);
  align-items: center;
  width: min(1440px, calc(100% - 52px));
  min-height: 770px;
  padding: 70px 0 150px;
}

.hero-reference .hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.hero-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px 18px;
  color: #0a476d;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(4, 43, 79, 0.11);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(4, 43, 79, 0.1);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero-reference h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #061b36;
  font-size: clamp(48px, 5.25vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.hero-reference h1 span {
  color: var(--orange);
}

.hero-reference h1::after {
  content: "";
  display: block;
  width: 190px;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  box-shadow: 0 6px 14px rgba(255, 159, 28, 0.18);
}

.hero-reference .hero-lede {
  max-width: 650px;
  color: #405468;
  font-size: clamp(18px, 1.48vw, 21px);
  line-height: 1.48;
}

.hero-reference .hero-actions {
  gap: 22px;
  margin-top: 28px;
}

.hero-reference .hero-button {
  min-width: 244px;
  min-height: 64px;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 16px;
  font-size: 17px;
}

.hero-reference .button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #ff8e16, #ffad1f);
  box-shadow: 0 18px 34px rgba(255, 159, 28, 0.34);
}

.hero-reference .button.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(4, 43, 79, 0.22);
  box-shadow: 0 12px 28px rgba(4, 43, 79, 0.09);
}

.button-icon,
.button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-arrow {
  margin-left: auto;
  font-size: 28px;
  line-height: 1;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.hero-trust-row article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.hero-trust-row article + article {
  padding-left: 24px;
  border-left: 1px solid rgba(4, 43, 79, 0.14);
}

.trust-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 950;
}

.trust-icon-orange,
.trust-icon-gold {
  color: var(--orange);
  background: #fff2dd;
}

.trust-icon-blue {
  color: var(--white);
  background: #0b5e9d;
  box-shadow: inset 0 0 0 10px #dceefa;
}

.hero-trust-row strong,
.hero-trust-row small {
  display: block;
  white-space: nowrap;
}

.hero-trust-row strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hero-trust-row small {
  color: #52687a;
  font-size: 13px;
  font-weight: 750;
}

.hero-trust-row article:first-child small {
  color: var(--orange);
  letter-spacing: 0.16em;
}

.trust-icon svg {
  width: 27px;
  height: 27px;
  overflow: visible;
}

.trust-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-icon-star {
  color: #8a4b00;
  background: radial-gradient(circle at 32% 24%, #fff9dd, #ffc857 54%, #ff9f1c 100%);
  box-shadow: 0 12px 26px rgba(255, 159, 28, 0.24), inset 0 0 0 4px rgba(255, 255, 255, 0.48);
}

.trust-icon-star svg path {
  fill: currentColor;
  stroke: rgba(255, 255, 255, 0.64);
  stroke-width: 0.9;
}

.trust-icon-shield {
  color: var(--white);
  background: linear-gradient(135deg, #0879b9, #042b4f);
  box-shadow: 0 12px 28px rgba(4, 43, 79, 0.22), inset 0 0 0 5px rgba(94, 195, 230, 0.2);
}

.trust-icon-shield svg path:first-child {
  fill: rgba(255, 255, 255, 0.1);
}

.trust-icon-estimate {
  color: #06416f;
  background: linear-gradient(135deg, #e8f7fd, #ffffff);
  border: 1px solid rgba(8, 121, 185, 0.2);
  box-shadow: 0 12px 26px rgba(4, 43, 79, 0.14), inset 0 -10px 20px rgba(94, 195, 230, 0.12);
}

.hero-quality-card {
  position: absolute;
  right: clamp(20px, 4vw, 68px);
  bottom: 70px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(400px, 31vw);
  max-width: 400px;
  padding: 26px 28px;
  color: var(--white);
  background: linear-gradient(135deg, #075d9c 0%, #044b82 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 28px 64px rgba(4, 43, 79, 0.34);
}

.quality-shield {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 78px;
  height: 78px;
  font-size: 36px;
  font-weight: 950;
  border: 5px solid rgba(255, 255, 255, 0.94);
  border-radius: 30% 30% 42% 42%;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16));
}

.hero-quality-card strong,
.hero-quality-card small {
  display: block;
}

.hero-quality-card strong {
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.hero-quality-card small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 800;
}

.hero-wave {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -52px;
  z-index: 4;
  height: 162px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 165' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 0H1440V38C1208 73 1010 47 758 59C502 72 260 103 0 58Z'/%3E%3Cpath fill='%23ff9f1c' d='M0 56C246 100 512 78 760 61C1015 43 1208 73 1440 38V52C1208 86 1016 58 760 76C508 94 246 116 0 71Z'/%3E%3Cpath fill='%23066faf' d='M0 66C248 108 512 88 760 71C1014 54 1208 84 1440 48V165H0Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  pointer-events: none;
}

.estimate-section {
  padding-top: 56px;
  padding-bottom: 72px;
}

.estimate-section-enhanced {
  width: 100%;
  max-width: none;
  padding-top: 40px;
  padding-bottom: 88px;
  background:
    linear-gradient(180deg, rgba(94, 195, 230, 0.08) 0%, rgba(255, 255, 255, 0) 100%),
    #f7fbfe;
  border-top: 1px solid rgba(4, 43, 79, 0.08);
  border-bottom: 1px solid rgba(4, 43, 79, 0.08);
}

.estimate-section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(4, 43, 79, 0.08);
}

.estimate-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 40px;
  align-items: start;
}

.estimate-section-grid > * {
  min-width: 0;
}

.estimate-section-copy h2 {
  max-width: 18ch;
  margin-bottom: 14px;
}

.estimate-section-copy .section-intro {
  max-width: 42ch;
  margin-bottom: 24px;
}

.estimate-trust-list {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.estimate-trust-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 8px 24px rgba(4, 43, 79, 0.04);
}

.estimate-trust-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 950;
}

.estimate-trust-icon-blue {
  color: var(--white);
  background: #0b5e9d;
  box-shadow: inset 0 0 0 8px #dceefa;
}

.estimate-trust-icon-orange {
  color: var(--orange);
  background: #fff2dd;
}

.estimate-trust-icon-gold {
  color: #b7791f;
  background: #fff6df;
}

.estimate-trust-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 16px;
}

.estimate-trust-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.estimate-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.estimate-mini-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(4, 43, 79, 0.1);
  border-radius: 999px;
  background: #f3f9fc;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.estimate-phone-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(4, 43, 79, 0.12);
  border-radius: 14px;
  background: linear-gradient(135deg, #043d73 0%, #065a9d 100%);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(4, 43, 79, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.estimate-phone-card:hover,
.estimate-phone-card:focus {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(4, 43, 79, 0.2);
}

.estimate-phone-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.estimate-phone-copy strong,
.estimate-phone-copy small {
  display: block;
}

.estimate-phone-copy strong {
  margin-bottom: 2px;
  font-size: 15px;
}

.estimate-phone-copy small {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 900;
}

.estimate-form-wrap {
  position: relative;
}

.estimate-card-enhanced {
  position: relative;
  max-width: 430px;
  margin-left: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(4, 43, 79, 0.12);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(4, 43, 79, 0.12);
}

.estimate-card-enhanced::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #0879b9, #5ec3e6);
}

.estimate-form-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 0;
  color: #0b5e9d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.estimate-form-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.estimate-leadform {
  min-height: 460px;
  padding: 8px 12px 16px;
}

.estimate-section-compact {
  padding-top: 48px;
}

.estimate-section-heading {
  max-width: 820px;
  text-align: left;
}

@media (max-width: 1280px) {
  .nav-header-actions {
    gap: 10px;
  }

  .nav-estimate-header,
  .nav-phone-header {
    padding-inline: 18px;
    font-size: 15px;
  }

  .hero-reference .hero-content {
    width: min(100% - 40px, 1180px);
  }
}

@media (max-width: 1120px) {
  .nav {
    width: calc(100% - 28px);
    gap: 12px;
  }

  .brand img {
    width: clamp(180px, 20vw, 230px);
  }

  .nav-links {
    gap: clamp(10px, 1.1vw, 14px);
    font-size: 13px;
  }

  .nav-phone-header {
    padding: 10px 14px;
    font-size: 13px;
  }

  .nav-estimate-header {
    display: none;
  }
}

@media (max-width: 960px) {
  .nav-header-actions {
    display: none;
  }

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

  .hero-reference .hero-media {
    background-position: center top;
  }

  .hero-reference .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 0.72) 100%),
      linear-gradient(0deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22));
  }

  .hero-reference .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 0 112px;
  }

  .hero-quality-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 26px;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-trust-row article + article {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 24px, 100%);
  }

  .hero-reference h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .hero-reference .hero-button {
    width: 100%;
    min-width: 0;
  }

  .hero-location-pill {
    align-items: flex-start;
    border-radius: 18px;
  }

  .hero-quality-card {
    padding: 22px;
  }
}

@media (max-width: 960px) {
  .proof-band {
    width: calc(100% - 24px);
    margin-top: 20px;
  }

  .proof-band-areas,
  .service-page-proof-areas {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 16px;
    padding: 18px 16px;
  }

  .proof-band-areas-intro,
  .service-page-proof-areas-intro {
    width: 100%;
    text-align: center;
  }

  .proof-band-areas-links,
  .service-page-proof-areas-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estimate-section-enhanced {
    padding-top: 32px;
    padding-bottom: 104px;
  }

  .estimate-section-shell {
    width: calc(100% - 24px);
    padding: 20px 16px;
  }

  .estimate-section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .estimate-section-copy h2,
  .estimate-section-copy .section-intro {
    max-width: none;
  }

  .estimate-trust-list,
  .estimate-trust-card,
  .estimate-phone-card,
  .estimate-mini-proof {
    width: 100%;
  }

  .estimate-mini-proof {
    justify-content: flex-start;
  }

  .estimate-card-enhanced {
    max-width: none;
    margin-left: 0;
  }

  .estimate-leadform {
    min-height: 420px;
    padding-inline: 4px;
  }
}

@media (max-width: 620px) {
  .proof-band-areas-links,
  .service-page-proof-areas-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .proof-band-areas-links a,
  .service-page-proof-areas-links a {
    flex: 0 1 auto;
    min-height: 34px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .proof-band-areas,
  .service-page-proof-areas {
    padding: 18px 14px;
    gap: 10px;
  }

  .proof-band-areas .proof-band-areas-intro,
  .proof-band-areas .proof-band-areas-links {
    padding: 0;
    border-bottom: 0;
  }

  .proof-band-areas-intro strong {
    font-size: 22px;
  }

  .proof-band-areas-intro span {
    font-size: 14px;
    line-height: 1.35;
  }

  .reviews-section-pre-estimate {
    padding: 22px 0 16px;
  }

  .reviews-section-pre-estimate .reviews-section-intro {
    margin-bottom: 12px;
  }

  .reviews-section-pre-estimate .reviews-section-intro .section-heading h2 {
    font-size: 28px;
  }

  .estimate-section-shell {
    padding: 16px 14px;
    border-radius: 12px;
  }

  .estimate-section-copy h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .estimate-trust-card {
    padding: 14px 16px;
  }

  .estimate-phone-card {
    padding: 14px 16px;
  }

  .estimate-phone-copy small {
    font-size: 16px;
  }
}
