@font-face {
  font-family: Manrope;
  src: url(fonts/body0.ttf);
}
@font-face {
  font-family: Barlow;
  src: url(fonts/display0.ttf);
}
:root {
  --bg: #0b0d0d;
  --panel: #121616;
  --panel2: #171c1b;
  --text: #f3f1e9;
  --muted: #a9b0ab;
  --line: #2a302e;
  --accent: #e7a536;
  --accent2: #ffd782;
  --display: Barlow, Arial, sans-serif;
  --body: Manrope, Arial, sans-serif;
  --radius: 24px;
  --wrap: min(1180px, calc(100% - 40px));
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}
body.theme-lawn {
  --bg: #f2f0e5;
  --panel: #fffdf4;
  --panel2: #e6ead7;
  --text: #162111;
  --muted: #5c6957;
  --line: #cad2bc;
  color-scheme: light;
}
body.theme-detail {
  --bg: #081012;
  --panel: #101a1c;
  --panel2: #142225;
}
a {
  color: inherit;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
button,
input,
select,
textarea {
  font: inherit;
}
.wrap {
  width: var(--wrap);
  margin-inline: auto;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 99;
  background: var(--accent);
  color: #101010;
  padding: 10px 16px;
}
.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 4;
}
.brand {
  font: 800 clamp(18px, 2vw, 24px) / 1 var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  max-width: 440px;
}
.navlinks {
  display: flex;
  gap: 24px;
  align-items: center;
}
.navlinks a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}
.navlinks a:hover {
  color: var(--text);
}
.call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #111 !important;
  border-radius: 999px;
  font-weight: 800 !important;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.hero {
  padding: 54px 0 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--accent2);
  font-weight: 800;
  margin: 0 0 20px;
}
.hero h1,
.section-title {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.91;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
}
.hero h1 {
  font-size: clamp(54px, 8vw, 112px);
  max-width: 9ch;
}
.hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
  max-width: 56ch;
  margin: 24px 0;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--line);
}
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}
.meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
}
.meta b {
  color: var(--text);
}
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 34px 90px #0007;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, #000b);
}
.photo-tag {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 16px;
  background: #0b0d0dcc;
  color: #fff;
  padding: 8px 12px;
  border: 1px solid #ffffff38;
  border-radius: 999px;
  font-size: 11px;
}
.trustbar {
  border-block: 1px solid var(--line);
  background: var(--panel);
}
.trustrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trustitem {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.trustitem:last-child {
  border: 0;
}
.trustitem b {
  display: block;
  font-family: var(--display);
  font-size: 23px;
}
.trustitem span {
  color: var(--muted);
  font-size: 13px;
}
.section {
  padding: 100px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.section-title {
  font-size: clamp(42px, 6vw, 76px);
  max-width: 11ch;
}
.section-head p {
  max-width: 52ch;
  color: var(--muted);
  margin: 0;
}
.services {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}
.service-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 170px;
  transition:
    0.25s transform,
    0.25s border-color;
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.service span {
  display: block;
  font: 800 13px var(--display);
  color: var(--accent2);
  margin-bottom: 35px;
}
.service h3 {
  font: 800 25px/1 var(--display);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.service p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.feature-photo {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.gallery figure {
  margin: 0;
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery figure:first-child {
  aspect-ratio: 16/10;
}
.gallery figure:last-child {
  aspect-ratio: 4/5;
}
.gallery figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 11px;
}
.gallery figure img {
  height: calc(100% - 44px);
}
.radar-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 52px;
  align-items: center;
}
.radar {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    repeating-radial-gradient(
      circle at center,
      transparent 0 17%,
      var(--line) 17.4% 17.8%,
      transparent 18.2% 34%
    ),
    linear-gradient(
      90deg,
      transparent 49.8%,
      var(--line) 50% 50.2%,
      transparent 50.4%
    ),
    linear-gradient(
      0deg,
      transparent 49.8%,
      var(--line) 50% 50.2%,
      transparent 50.4%
    ),
    var(--panel);
}
.radar:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0 300deg,
    color-mix(in srgb, var(--accent) 45%, transparent) 350deg,
    var(--accent) 359deg,
    transparent 360deg
  );
  animation: sweep 6s linear infinite;
}
.radar:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 22px var(--accent);
}
@keyframes sweep {
  to {
    transform: rotate(360deg);
  }
}
.radar-point {
  position: absolute;
  z-index: 2;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background: var(--bg);
  border: 1px solid color-mix(in srgb, var(--accent) 60%, var(--line));
  color: var(--text);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  animation: pulse 2.6s ease-in-out infinite;
  animation-delay: var(--d);
}
.radar-point:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 6px;
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 10%, transparent);
  }
}
.area-copy .section-title {
  max-width: 8ch;
}
.area-copy p {
  color: var(--muted);
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.area-list span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
}
.reviews {
  background: var(--panel);
  overflow: hidden;
}
.review-window {
  overflow: hidden;
}
.review-track {
  display: flex;
  transition: transform 0.55s ease;
}
.review {
  min-width: 100%;
  padding: 48px 0 30px;
}
.review .stars {
  color: var(--accent);
  letter-spacing: 0.18em;
}
.review blockquote {
  font: 700 clamp(28px, 4vw, 54px) / 1.12 var(--display);
  max-width: 25ch;
  margin: 20px 0;
  text-transform: uppercase;
}
.review small {
  color: var(--muted);
}
.review-controls {
  display: flex;
  gap: 10px;
  padding-bottom: 30px;
}
.review-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 50%;
  cursor: pointer;
}
.profile {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.profile-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}
.profile-copy p {
  color: var(--muted);
}
.map {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 18px;
  margin-top: 20px;
  filter: saturate(0.75);
}
.quote {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.quote-copy {
  position: sticky;
  top: 30px;
}
.quote-copy p {
  color: var(--muted);
}
form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
label {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  padding: 14px;
  min-height: 50px;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  color: var(--muted);
  font-size: 11px;
}
.submit {
  width: 100%;
  margin-top: 16px;
  min-height: 54px;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 90px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer p {
  color: var(--muted);
  font-size: 12px;
}
.mobilebar {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (max-width: 850px) {
  .navlinks a:not(.call) {
    display: none;
  }
  .hero-grid,
  .services,
  .radar-layout,
  .profile,
  .quote {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 34px;
  }
  .hero-photo {
    aspect-ratio: 5/4;
  }
  .service-stack {
    order: 2;
  }
  .feature-photo {
    min-height: 330px;
  }
  .section {
    padding: 74px 0;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .quote-copy {
    position: static;
  }
  .mobilebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    z-index: 20;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: color-mix(in srgb, var(--bg) 90%, transparent);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    gap: 8px;
  }
  .mobilebar a {
    text-align: center;
    padding: 12px;
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
  }
  .mobilebar .primary {
    background: var(--accent);
    color: #111;
  }
  .footer {
    padding-bottom: 120px;
  }
}
@media (max-width: 560px) {
  :root {
    --wrap: min(100% - 24px, 1180px);
    --radius: 18px;
  }
  .brand {
    max-width: 210px;
    font-size: 17px;
  }
  .nav .call {
    padding: 10px 13px;
    font-size: 12px;
  }
  .hero h1 {
    font-size: clamp(48px, 16vw, 72px);
  }
  .hero-photo {
    aspect-ratio: 4/3;
  }
  .trustrow {
    grid-template-columns: 1fr;
  }
  .trustitem {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px 4px;
  }
  .service-stack {
    grid-template-columns: 1fr;
  }
  .service {
    min-height: 0;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery figure:first-child,
  .gallery figure:last-child {
    aspect-ratio: 4/3;
  }
  .radar-point {
    font-size: 9px;
    padding: 4px 7px;
  }
  .fields {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .review {
    padding: 30px 0 20px;
  }
  .profile {
    gap: 24px;
  }
  .footer-row {
    flex-direction: column;
  }
}

/* Compact stacked logo: truck above the business name. */
.brand-lockup {
  flex-direction: column;
  gap: 0;
  width: 150px;
  text-align: center;
}
.brand-lockup img {
  width: 92px;
  height: 38px;
}
.brand-lockup span {
  align-items: center;
}
.brand-lockup b {
  font-size: 16px;
}
.brand-lockup small {
  margin-top: 3px;
  font-size: 7px;
}
.nav .brand-lockup {
  width: 138px;
}
.nav .brand-lockup img {
  width: 72px;
  height: 30px;
}
.google-rating i {
  color: #ffc400 !important;
  text-shadow: 0 0 8px #ffc40055;
}
.hours-neon {
  padding: 3px 8px;
  border: 1px solid #ffc400;
  border-radius: 4px;
  color: #ffc400;
  font: 800 11px/1.3 var(--display);
  letter-spacing: 0.07em;
  box-shadow:
    0 0 7px #ffc40088,
    inset 0 0 5px #ffc40033;
  text-shadow: 0 0 7px #ffc400;
}
.footer-brand {
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
}
.footer-brand img {
  width: 92px;
}
.footer-brand span {
  max-width: 190px;
  font-size: 16px;
}
@media (max-width: 560px) {
  .brand-lockup {
    width: 118px;
  }
  .brand-lockup span {
    display: flex;
  }
  .brand-lockup img {
    width: 82px;
    height: 34px;
  }
  .nav .brand-lockup {
    width: 112px;
  }
  .nav .brand-lockup img {
    width: 54px;
    height: 23px;
  }
  .brand-lockup b {
    font-size: 14px;
  }
  .brand-lockup small {
    font-size: 6px;
  }
}

/* Compact service photography */
.services {
  display: block;
}
.service-stack {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}
.service-image {
  height: 118px;
  overflow: hidden;
  background: var(--panel2);
}
.service-image img {
  transition: transform 0.4s ease;
}
.service:hover .service-image img {
  transform: scale(1.035);
}
.service-body {
  padding: 18px 19px 21px;
}
.service-body span {
  margin-bottom: 20px;
}
.service-body h3 {
  font-size: 22px;
}

/* Verified reputation facts */
.reputation-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.reputation-card {
  padding: 27px;
  background: #f2efe8;
  color: #171a18;
  border: 1px solid #f2efe8;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px #0004;
}
.reputation-card.rating-card {
  grid-row: 1/3;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--accent);
  border-color: var(--accent);
}
.reputation-card > span {
  color: #5f5749;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.rating-card > span {
  color: #3b321f;
}
.reputation-card strong {
  display: block;
  margin: 12px 0 8px;
  font: 800 clamp(28px, 4vw, 58px) / 0.95 var(--display);
  text-transform: uppercase;
}
.reputation-card:not(.rating-card) strong {
  font-size: clamp(24px, 3vw, 38px);
}
.reputation-card p {
  max-width: 42ch;
  margin: 10px 0 0;
  color: #575d58;
}
.rating-card p {
  color: #3f3420;
}
.rating-stars {
  color: #171a18;
  letter-spacing: 0.16em;
  font-size: 19px;
}
.reputation-card a {
  display: inline-block;
  margin-top: 16px;
  color: #70501a;
  font-weight: 800;
  text-underline-offset: 4px;
}
@media (max-width: 950px) {
  .service-stack {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 650px) {
  .service-stack,
  .reputation-grid {
    grid-template-columns: 1fr;
  }
  .reputation-grid {
    grid-template-rows: auto;
  }
  .reputation-card.rating-card {
    grid-row: auto;
    min-height: 240px;
  }
  .service-image {
    height: 132px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .radar:before,
  .radar-point,
  .reveal,
  .mow-strip,
  .mow-turf,
  .mow-wheel,
  .mow-clips i {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.profile.solo {
  grid-template-columns: 1fr;
}
.reveal {
  opacity: 1;
  transform: none;
}

/* Customer truck artwork, rebuilt as the primary brand mark. */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: none;
}
.brand-lockup img {
  width: 120px;
  height: 58px;
  object-fit: contain;
}
.brand-lockup span {
  display: flex;
  flex-direction: column;
}
.brand-lockup b {
  font: 800 20px/1 var(--display);
  letter-spacing: 0.03em;
}
.brand-lockup small {
  margin-top: 5px;
  color: var(--muted);
  font: 800 9px/1 var(--body);
  letter-spacing: 0.14em;
}

/* Hero logo stage and always-open neon sign. */
.hero-brandstage {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 28px 24px;
  border: 1px solid #383d3a;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 24%, #efd34820, transparent 33%),
    linear-gradient(145deg, #161a19, #080a0a 70%);
  box-shadow: 0 34px 90px #0007;
}
.hero-brandstage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 54px,
    #ffffff08 55px 56px
  );
  pointer-events: none;
}
.hero-truck-mark {
  position: relative;
  z-index: 1;
  width: min(112%, 620px);
  height: auto;
  margin-top: 24px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px #000a);
}
.hero-brandstage > p {
  position: relative;
  z-index: 1;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.neon-sign {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 17px;
  border: 2px solid #ffc928;
  border-radius: 8px;
  color: #fffbe8;
  background: #090b0bdd;
  box-shadow:
    0 0 8px #ffc928,
    inset 0 0 8px #ffc92855,
    0 0 30px #ffc92866;
  font-family: var(--display);
  line-height: 1;
  transform: rotate(-1deg);
}
.neon-sign span {
  font-size: 19px;
  text-shadow:
    0 0 8px #fff,
    0 0 15px #fff;
}
.neon-sign strong {
  color: #ffc928;
  font-size: 27px;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 7px #ffc928,
    0 0 20px #ffc928;
}
.google-rating i,
.rating-stars,
.review-stars {
  color: #ffc928;
  font-style: normal;
  letter-spacing: 0.1em;
}

/* Two verified Google ratings without invented testimonial copy. */
.reputation-card.rating-card {
  color: var(--text);
  background: #0d1110;
  border-color: #ffc928;
  box-shadow: 0 0 35px #ffc9281f;
}
.rating-card > span,
.rating-card p {
  color: var(--muted);
}
.rating-stars {
  font-size: 25px;
}
.review-stars {
  margin-top: 20px;
  font-size: 20px;
}
.review-rating strong {
  margin-top: 18px;
}
.google-link {
  display: inline-block;
  margin-top: 24px;
  color: #ffc928;
  font-weight: 800;
  text-underline-offset: 5px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer-brand img {
  width: 120px;
  height: auto;
  object-fit: contain;
}
.footer-brand span {
  max-width: 240px;
}

@media (max-width: 850px) {
  .hero-brandstage {
    min-height: 420px;
  }
}
@media (max-width: 560px) {
  .brand-lockup span {
    display: none;
  }
  .brand-lockup img {
    width: 144px;
    height: 62px;
  }
  .hero-brandstage {
    min-height: 330px;
    padding: 28px 15px 20px;
  }
  .hero-truck-mark {
    width: 108%;
    margin-top: 20px;
  }
  .neon-sign strong {
    font-size: 22px;
  }
  .neon-sign span {
    font-size: 16px;
  }
  .hero-brandstage > p {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
}

/* Final header sizing override. */
.nav .brand-lockup {
  flex-direction: column;
  gap: 0;
  width: 170px;
  height: 72px;
  text-align: center;
}
.nav .brand-lockup img {
  width: 100px;
  height: 42px;
}
.nav .brand-lockup span {
  display: flex;
  align-items: center;
}
.nav .brand-lockup b {
  color: #ffc928;
  font-size: 20px;
}
.nav .brand-lockup small {
  margin-top: 2px;
  color: #ffc928;
  font-size: 6px;
}
@media (max-width: 560px) {
  .nav .brand-lockup {
    width: 145px;
    height: 68px;
  }
  .nav .brand-lockup img {
    width: 92px;
    height: 39px;
  }
  .nav .brand-lockup span {
    display: flex;
  }
}

/* Continuous row of verified Google-rating cards. */
.review-proof {
  display: block;
}
.review-proof .rating-card {
  min-height: 0;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px;
}
.review-proof .rating-card strong,
.review-proof .rating-card p {
  margin: 0;
}
.review-proof .rating-card .rating-stars {
  order: 3;
  justify-self: end;
}
.review-marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  margin-top: 16px;
}
.review-marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  gap: 14px;
  animation: review-marquee 36s linear infinite;
  will-change: transform;
}
.review-marquee:hover .review-marquee-track {
  animation-play-state: paused;
}
.review-marquee-track .review-rating {
  flex: 0 0 clamp(270px, 24vw, 330px);
  width: clamp(270px, 24vw, 330px);
  min-height: 235px;
  box-shadow: none;
}
@keyframes review-marquee {
  to {
    transform: translateX(calc(-50% - 7px));
  }
}
@media (max-width: 650px) {
  .review-proof {
    display: block;
  }
  .review-proof .rating-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .review-proof .rating-card .rating-stars {
    order: initial;
    justify-self: start;
  }
  .review-marquee {
    width: 100%;
  }
  .review-marquee-track .review-rating {
    flex-basis: 278px;
    width: 278px;
    min-height: 230px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .review-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .review-marquee-track {
    animation: none;
  }
}
