:root {
  --navy: #004272;
  --yellow: #EACB44;
  --yellow-deep: #EACB44;
  --muted-pill: #2f648a;
  --ink: #004272;
  --line: #e9e9e9;
  --soft: #f6f6f6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Instrument Sans", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  letter-spacing: 0;
}
body.menu-open {
  overflow: hidden;
}
body.logo-intro-active {
  overflow-x: hidden;
}
body.logo-intro-active .logo img {
  opacity: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.logo-intro {
  position: fixed;
  left: 16px;
  top: 3px;
  z-index: 9999;
  width: 68px;
  aspect-ratio: 1 / 1;
  overflow: visible;
  background: transparent;
  pointer-events: none;
  transform: scale(1);
  transform-origin: center;
  opacity: 1;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
.logo-intro::after {
  display: none;
}
.logo-intro-video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transform: translate(-50%, -50%);
  transform-origin: center;
}
.logo-intro.is-moving {
  transform: scale(.96);
  opacity: 0;
  transition:
    transform .36s ease,
    opacity .28s ease;
}
.logo-intro.is-hidden {
  display: none;
}

.header {
  height: 78px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 12px 0 17px;
  background: var(--navy);
  color: white;
}
.logo img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}
.mobile-menu-panel {
  display: contents;
}
.mobile-home-link {
  display: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}
.nav a {
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote-pill,
.phone-pill,
.hero-form button,
.quote-form button {
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}
.quote-pill-muted {
  background: var(--muted-pill);
  color: white;
}
.phone-pill,
.hero-form button,
.quote-form button {
  background: var(--yellow);
  color: #062d4a;
}
.phone-pill span {
  display: inline-block;
  margin-right: 9px;
}
.menu-button { display: none; }

.hero {
  min-height: calc(100vh - 78px);
  position: relative;
  overflow: hidden;
  background: var(--navy);
  --scrub-progress: 0;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 66, 114, .54);
}
.hero-scroll-progress {
  position: absolute;
  z-index: 4;
  right: 26px;
  bottom: 18px;
  left: 26px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
}

.hero-scroll-progress span {
  display: block;
  width: calc(var(--scrub-progress) * 100%);
  height: 100%;
  border-radius: inherit;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(234, 203, 68, .74);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 230px 26px 170px;
  width: min(1120px, 100%);
}
.hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(48px, 5.05vw, 70px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
  min-height: calc(3 * 1.06em);
}
.hero-location {
  display: inline-flex;
  align-items: baseline;
  gap: .22em;
  white-space: nowrap;
}
.hero h1 #city-rotator {
  display: inline-block;
  max-width: 100%;
  font-size: clamp(42px, 4.85vw, 66px);
}
.hero h1 #city-rotator::after {
  content: "|";
  color: white;
  animation: blink 1s infinite;
}
.hero-city {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-form {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-form input {
  width: 251px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
  font-size: 18px;
  color: #777;
  background: white;
}
.hero-form button { height: 54px; font-size: 19px; }

.section {
  padding: 126px 26px 84px;
  scroll-margin-top: 96px;
}
.section h2 {
  margin: 0 0 42px;
  text-align: center;
  font-size: clamp(42px, 5.4vw, 80px);
  line-height: .96;
  font-weight: 900;
  text-transform: uppercase;
}

.about {
  background: #f4f8fb;
}
.about-frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(28px, 4.5vw, 60px);
  border: 3px solid rgba(0, 66, 114, .14);
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 66, 114, .12);
}
.about h2 {
  text-align: left;
  margin-bottom: 28px;
}
.about-copy {
  max-width: 820px;
}
.about-copy p {
  margin: 0 0 18px;
  color: #244b68;
  font-size: 19px;
  line-height: 1.62;
  font-weight: 750;
}
.about-copy p:last-child {
  margin-bottom: 0;
  color: var(--navy);
}
.about-video {
  position: relative;
  width: min(100%, 375px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  border: 12px solid var(--yellow);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 66, 114, .18);
}
.about-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(210px, 1fr));
  gap: 18px;
  overflow: hidden;
}
.review-video {
  height: 382px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  background: #004272;
}
.review-video > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,66,114,.78));
}
.review-video button {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.review-video button::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 24px;
  border-left: 18px solid #004272;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.review-video div {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  color: white;
}
.review-video b,
.review-video span { display: block; }
.review-video b { font-size: 22px; }
.review-video span { font-size: 14px; }

.google-reviews {
  padding-top: 28px;
  background: #fff;
}

.google-reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin: 0 auto 24px;
  max-width: 1228px;
}

.google-reviews h2 {
  margin: 0;
  text-align: left;
  font-size: clamp(32px, 4.2vw, 58px);
}

.google-score {
  min-width: 190px;
  min-height: 104px;
  border-radius: 24px;
  padding: 18px 22px;
  background: var(--yellow);
  color: #062d4a;
  display: grid;
  align-content: center;
  box-shadow: 0 18px 42px rgba(0, 66, 114, .14);
}

.google-score strong {
  font-size: 42px;
  line-height: .9;
}

.google-score span {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 900;
}

.ghl-review-widget {
  max-width: 1228px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 66, 114, .12);
}

.lc_reviews_widget {
  display: block;
  min-height: 430px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-grid article {
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 66, 114, .10);
  border: 1px solid #eee;
  padding-bottom: 26px;
  scroll-margin-top: 96px;
}
.service-grid article > span {
  display: inline-flex;
  margin: 18px 18px 12px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}
.service-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}
.service-grid h3 {
  margin: 24px 22px 12px;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}
.service-grid p {
  margin: 0 22px;
  color: #42627a;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}
.included {
  background: var(--navy);
  color: white;
}
.include-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.include-grid article {
  min-height: 340px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  padding: 30px;
  background: rgba(255,255,255,.04);
}
.include-grid img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}
.include-grid h3 {
  margin: 24px 0 14px;
  font-size: 29px;
  line-height: 1.05;
}
.include-grid p {
  color: #d7dbe5;
  line-height: 1.55;
  font-weight: 700;
}

.area-layout {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 32px;
  align-items: start;
}
.area-text p {
  margin: 0 0 24px;
  font-size: 22px;
  line-height: 1.52;
  font-weight: 800;
}
.coverage-map {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 20px 56px rgba(0, 66, 114, .12);
}
.city-pills {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.city-pills button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--yellow);
  color: #062d4a;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}
.additional {
  border-radius: 28px;
  overflow: hidden;
  background: var(--navy);
  color: white;
}
.additional h3 {
  margin: 0;
  padding: 24px;
  background: var(--yellow);
  color: #062d4a;
  font-size: 30px;
}
.additional article {
  position: relative;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.additional b {
  display: block;
  max-width: calc(100% - 118px);
  margin-top: 34px;
  font-size: 19px;
}
.additional span {
  position: absolute;
  top: 22px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 6px;
  padding: 0 14px;
  background: var(--yellow);
  color: #062d4a;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}
.additional p {
  margin: 10px 0 0;
  color: #d7dbe5;
  line-height: 1.45;
  font-weight: 700;
}

.belief {
  padding: 92px 26px;
  text-align: center;
  color: white;
  background: linear-gradient(rgba(0,66,114,.84), rgba(0,66,114,.84)), url("assets/hero-photo.png") center/cover no-repeat;
}
.belief div {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.belief span {
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 12px 18px;
}
.belief h2 {
  margin: 0 auto 18px;
  max-width: 920px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .96;
  text-transform: uppercase;
}
.belief p {
  margin: 0 auto;
  max-width: 780px;
  color: #d8dbe4;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 800;
}

.completed-moves {
  padding-top: 74px;
}
.completed-moves h2 {
  margin-bottom: 24px;
}
.completed-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.completed-gallery figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #e8eef3;
}
.completed-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.completed-gallery figure:hover img {
  transform: scale(1.04);
}
.completed-gallery figure[hidden] {
  display: none;
}
.gallery-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 54px;
  margin: 26px auto 0;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue);
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 66, 114, .13);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}
.contact h2 { text-align: left; margin-bottom: 22px; }
.faq > p {
  color: #42627a;
  font-size: 18px;
  line-height: 1.55;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
summary {
  list-style: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
}
details[open] summary::after { content: "-"; }
details p {
  color: #42627a;
  line-height: 1.55;
  font-weight: 700;
}
.callout {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-top: 28px;
  font-size: 22px;
  line-height: 1.35;
}
.callout a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--yellow);
  color: #062d4a;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
}
.callout a span {
  font-size: 20px;
  line-height: 1;
}
.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  border-radius: 28px;
  background: #f7f7f7;
}
.quote-form h2,
.quote-form small,
.quote-form button,
.form-success {
  grid-column: 1 / -1;
}
.quote-form h2 {
  margin: 0 0 8px;
  text-align: left;
  font-size: 54px;
}
.quote-form label {
  display: grid;
  gap: 8px;
  color: #004272;
  font-size: 14px;
  font-weight: 900;
}
.quote-form input,
.quote-form select {
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: white;
  font: inherit;
  font-size: 15px;
}
.quote-form button {
  min-height: 58px;
  text-transform: uppercase;
}
.quote-form small {
  color: #42627a;
  line-height: 1.45;
}
.form-success {
  margin: 0;
  color: #17824f;
}

.footer {
  display: grid;
  grid-template-columns: minmax(230px, 330px) minmax(260px, 420px) minmax(300px, 1fr);
  grid-template-areas:
    "brand links action"
    "brand description action"
    "copy copy copy";
  gap: 36px 48px;
  padding: 64px clamp(26px, 4.5vw, 72px);
  background: var(--navy);
  color: white;
  align-items: start;
}
.footer-brand {
  grid-area: brand;
  min-height: 100%;
  padding-right: 44px;
  border-right: 3px solid rgba(255,255,255,.82);
}
.footer-brand img {
  width: 148px;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  margin: 0 0 28px;
}
.footer p {
  margin: 0 0 14px;
  line-height: 1.45;
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer-brand p,
.footer-legal {
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.footer-brand strong {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 22px;
  line-height: 1.05;
}
.footer-legal {
  display: block;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-links {
  grid-area: links;
  display: grid;
  gap: 26px;
}
.footer-links a {
  width: fit-content;
  color: white;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.05;
  font-weight: 900;
}
.footer-action {
  grid-area: action;
  display: grid;
  justify-items: end;
  gap: 22px;
}
.footer-phone,
.footer-action .phone-pill {
  min-width: 230px;
  min-height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
}
.footer-phone {
  background: rgba(255,255,255,.18);
  color: white;
}
.footer-action .phone-pill {
  margin-bottom: 36px;
  background: var(--yellow);
  color: #062d4a;
}
.footer-description p {
  max-width: 760px;
  margin: 42px 0 0;
  color: rgba(255,255,255,.94);
  font-size: clamp(13px, 1.33vw, 21px);
  line-height: 1.15;
  font-weight: 800;
}
.footer-description {
  grid-area: description;
}
.footer-license {
  margin-top: 12px;
  color: rgba(255,255,255,.96);
}
.footer-license p {
  margin: 0;
  color: rgba(255,255,255,.96);
  font-size: clamp(13px, 1.33vw, 21px);
  line-height: 1.15;
  font-weight: 800;
}
.footer-puc-logo {
  width: min(100%, 320px);
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
  display: block;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.footer-social a {
  display: grid;
  width: 68px;
  height: 68px;
  border-radius: 16px;
  place-items: center;
  background: rgba(255,255,255,.15);
  color: white;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}
.footer-social svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-copy {
  grid-area: copy;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  margin: 14px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.82);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}
.footer-copy p {
  width: 100%;
  margin: 4px 0 0;
}

.privacy-main {
  background: #fff;
}
.privacy-hero {
  padding: clamp(70px, 9vw, 130px) clamp(18px, 5vw, 80px) clamp(42px, 6vw, 80px);
  background: var(--navy);
  color: white;
}
.privacy-hero p {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}
.privacy-hero h1 {
  max-width: 980px;
  margin: 0;
  color: white;
  font-size: clamp(44px, 8vw, 104px);
  line-height: .92;
  font-weight: 900;
}
.privacy-hero span {
  display: block;
  margin-top: 20px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  font-weight: 800;
}
.privacy-content {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 86px) 18px clamp(70px, 8vw, 110px);
}
.privacy-content p,
.privacy-content address {
  margin: 0 0 22px;
  color: #284964;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.58;
  font-weight: 650;
}
.privacy-content h2 {
  margin: 44px 0 14px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 900;
}
.privacy-content a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.privacy-content address {
  padding: 24px;
  border-radius: 8px;
  background: #f4f7fa;
  font-style: normal;
}

@media (max-width: 1100px) {
  .header {
    grid-template-columns: 70px 1fr auto;
  }
  .mobile-menu-panel {
    display: none;
  }
  .menu-button {
    display: grid;
    gap: 5px;
    width: 46px;
    height: 42px;
    justify-self: end;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    background: transparent;
    place-content: center;
  }
  .menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
  }
  .header.menu-open::before {
    content: "";
    position: fixed;
    inset: 74px 0 0;
    z-index: 59;
    background: rgba(0, 0, 0, .64);
    backdrop-filter: blur(2px);
  }
  .header.menu-open .mobile-menu-panel {
    position: fixed;
    z-index: 70;
    top: 112px;
    right: 20px;
    left: 20px;
    display: block;
    padding: 72px clamp(28px, 5vw, 72px) 48px;
    border-radius: 28px;
    background: white;
    color: #000;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  }
  .header.menu-open .nav {
    display: grid;
    gap: 34px;
  }
  .header.menu-open .mobile-home-link {
    display: inline-flex;
    justify-self: start;
    padding: 2px 6px;
    outline: 3px solid #9ab8ff;
    outline-offset: 4px;
  }
  .header.menu-open .nav a {
    color: #000;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1;
  }
  .header.menu-open .header-actions {
    display: grid;
    gap: 22px;
    margin-top: 52px;
  }
  .header.menu-open .quote-pill,
  .header.menu-open .phone-pill {
    width: 100%;
    min-height: 76px;
    border-radius: 999px;
    font-size: clamp(18px, 2.4vw, 26px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
  }
  .header.menu-open .quote-pill {
    background: #3b465a;
    color: white;
  }
  .header.menu-open .phone-pill {
    background: var(--yellow);
    color: #000;
  }
  .header.menu-open .menu-button {
    position: fixed;
    z-index: 80;
    top: 144px;
    right: 42px;
    width: 58px;
    height: 58px;
    border: 4px solid #000;
    border-radius: 50%;
    background: white;
  }
  .header.menu-open .menu-button span {
    width: 28px;
    height: 4px;
    background: #000;
  }
  .header.menu-open .menu-button span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .header.menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }
  .header.menu-open .menu-button span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .header.menu-open {
    height: 78px;
  }
  .service-grid,
  .include-grid,
  .area-layout,
  .contact {
    grid-template-columns: 1fr;
  }
  .completed-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-frame {
    grid-template-columns: 1fr;
  }
  .footer {
    grid-template-columns: minmax(220px, 320px) 1fr;
    grid-template-areas:
      "brand action"
      "links links"
      "description description"
      "copy copy";
  }
  .footer-brand {
    border-right: 0;
    padding-right: 0;
  }
  .footer-description,
  .footer-links {
    grid-column: 1 / -1;
  }
  .footer-action {
    justify-items: end;
  }
  .hero { min-height: auto; }
}

@media (max-width: 700px) {
  .header {
    height: 74px;
    padding: 0 16px;
  }
  .logo img {
    width: 68px;
    height: 68px;
  }
  .logo-intro {
    left: 16px;
    top: 3px;
    width: 68px;
  }
  .header.menu-open::before {
    inset: 74px 0 0;
  }
  .header.menu-open .mobile-menu-panel {
    top: 94px;
    right: 16px;
    left: 16px;
    max-height: calc(100svh - 114px);
    overflow-y: auto;
    padding: 58px 24px 36px;
    border-radius: 24px;
  }
  .header.menu-open .menu-button {
    top: 114px;
    right: 34px;
    width: 46px;
    height: 46px;
    border-width: 3px;
  }
  .header.menu-open .menu-button span {
    width: 22px;
    height: 3px;
  }
  .header.menu-open .menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header.menu-open .menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header.menu-open .nav {
    gap: 22px;
  }
  .header.menu-open .nav a {
    font-size: 21px;
  }
  .header.menu-open .header-actions {
    margin-top: 40px;
  }
  .header.menu-open .quote-pill,
  .header.menu-open .phone-pill {
    min-height: 54px;
    font-size: 17px;
  }
  .hero-content {
    padding: 210px 16px 110px;
  }
  .hero-scroll-progress {
    left: 16px;
    right: 16px;
    bottom: 12px;
  }
  .hero h1 {
    font-size: 40px;
    line-height: 1.04;
    min-height: calc(5 * 1.04em);
  }
  .hero-location {
    display: inline;
    white-space: normal;
  }
  .hero-city {
    display: inline-flex;
    max-width: calc(100vw - 32px);
    white-space: nowrap;
  }
  .hero h1 #city-rotator {
    font-size: 32px;
    overflow-wrap: break-word;
  }
  .hero-form {
    display: grid;
    gap: 12px;
  }
  .hero-form input,
  .hero-form button {
    width: 100%;
  }
  .rating-title,
  .rating-card {
    height: auto;
    min-height: 126px;
    border-radius: 18px;
  }
  .section {
    padding: 78px 16px 54px;
    scroll-margin-top: 78px;
  }
  .section h2 {
    font-size: 42px;
  }
  .about-copy p {
    font-size: 17px;
  }
  .about-frame {
    padding: 22px;
    border-radius: 24px;
  }
  .about-video {
    width: min(100%, 280px);
    border-width: 8px;
    border-radius: 20px;
  }
  .google-reviews {
    padding-top: 52px;
  }
  .google-reviews-head {
    grid-template-columns: 1fr;
  }
  .google-score {
    min-width: 0;
    width: 100%;
  }
  .lc_reviews_widget {
    min-height: 520px;
  }
  .video-strip {
    grid-template-columns: repeat(6, 235px);
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .completed-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery-toggle {
    width: 100%;
  }
  .review-video {
    height: 360px;
  }
  .include-grid article,
  .quote-form {
    border-radius: 20px;
    padding: 22px;
  }
  .quote-form {
    grid-template-columns: 1fr;
  }
  .contact h2,
  .quote-form h2 {
    font-size: 40px;
  }
  .footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "links"
      "action"
      "description"
      "copy";
    gap: 28px;
    padding: 46px 22px;
  }
  .footer-brand {
    border-right: 0;
    padding-right: 0;
  }
  .footer-description p {
    margin: 8px 0 0;
    text-align: left;
    font-size: 15px;
  }
  .footer-phone,
  .footer-action .phone-pill {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 20px;
  }
  .footer-action {
    justify-items: stretch;
  }
  .footer-links {
    gap: 18px;
  }
  .footer-links a {
    font-size: 25px;
  }
  .footer-license {
    width: 100%;
    margin-top: 10px;
  }
  .footer-license p {
    font-size: 15px;
  }
  .footer-puc-logo {
    width: 100%;
    max-width: 320px;
  }
  .footer-copy {
    text-align: left;
  }
  .footer-social a {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero h1 #city-rotator {
    font-size: 25px;
  }
}
