.hc-about-hero {
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
}

.hc-about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hc-section {
  padding: clamp(40px, 5vw, 80px) 0;
}

.hc-section h1,
.hc-section h2 {
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.16;
}

.hc-profile {
  padding-bottom: clamp(40px, 5vw, 80px);
}

.hc-profile h1 {
  font-size: clamp(24px, 2.8vw, 50px);
  margin-bottom: clamp(110px, 12vw, 250px);
}

.hc-about-profile {
  position: relative;
}

.hc-profile-pic {
  width: 39%;
  position: absolute;
  transform: translateY(-30%);
}

.hc-profile-copy {
  width: 58%;
  margin-left: auto;
  font-size: clamp(14px, .84vw, 18px);
  line-height: 1.42;
}

.hc-profile-copy p {
  margin-bottom: .65em;
}

.hc-solution {
  padding-top: 0;
}

.hc-wide-image {
  width: 100%;
  aspect-ratio: 3.2 / 1;
  object-fit: cover;
}

.hc-solution-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7vw;
  align-items: end;
  padding-top: 42px;
}

.hc-solution-row h2,
.hc-kicker {
  font-size: clamp(16px, 2.8vw, 20px);
  margin-bottom: 28px;
}

.hc-solution-row p {
  max-width: 980px;
  font-size: clamp(13px, .78vw, 17px);
  line-height: 1.45;
}

.hc-solution-right span {
  display: block;
  margin-bottom: 20px;
}

/* .hc-solution-right a{display: block;} */
.hc-outline-btn {
  color: #111;
  border: 1px solid #111;
  padding: 16px 22px;
  font-size: 16px;
  white-space: nowrap;
  text-decoration: none;
}

.hc-outline-btn:hover {
  color: #fff;
  background: #111;
  text-decoration: none;
}

.hc-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.hc-heading-row h2,
.hc-shipping h2 {
  font-size: clamp(24px, 2.8vw, 50px);;
}

.hc-heading-row span {
  font-size: 16px;
  margin-bottom: 20px;
}

.hc-image-grid {
  display: grid;
  gap: 2.2vw;
}

.hc-team-grid {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  margin-top: 52px;
}

.hc-team-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.33 / 1;
  object-fit: cover;
}
.hc-team-grid img:nth-child(2) {
  aspect-ratio: 1.1 / 1;
}


.hc-team-grid img:last-child {
  aspect-ratio: .92 / 1;
}

.hc-kicker {
  margin-top: 0px;
  font-size: 24px;
  font-weight: 600;
}

.hc-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  width: 45%;
}

.hc-certifications span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 3px solid #111;
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

.hc-shipping {
  padding-top: 60px;
}

.hc-shipping-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
}

.hc-shipping-grid img {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
}

.hc-process h2 {
  font-size: clamp(24px, 2.8vw, 50px);
  text-align: center;
  margin-bottom: 75px;
}

.hc-process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px 24px;
}

.hc-process-grid li {
  position: relative;
  display: grid;
  grid-template-columns: 45px 1fr;
  grid-template-rows: 58px auto;
  align-items: start;
}

.hc-process-grid li:not(:nth-child(4n))::after {
  content: "→";
  position: absolute;
  top: 8px;
  right: 0;
  font-size: 25px;
}
.hc-process-grid li:nth-child(4)::after,.hc-process-grid li:nth-child(5)::after{
  content: "↓";
  position: absolute;
  top: 8px;
  right: 0;
  font-size: 25px;
}
.hc-process-grid li:nth-child(6)::after,.hc-process-grid li:nth-child(7)::after,.hc-process-grid li:nth-child(8)::after{
  content: "←";
  position: absolute;
  top: 8px;
  right: 0;
  font-size: 25px;
}
.hc-process-grid li:last-child::after{
  display: none;
}

.hc-process-grid b {
  font-size: 34px;
  line-height: 1;
}

.hc-process-grid span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.hc-process-grid img {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 2.6 / 1;
  object-fit: cover;
}

body.hc-modal-open {
  overflow: hidden;
}

.hc-quote-modal[hidden] {
  display: none;
}

.hc-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  transition: opacity .18s ease;
}

.hc-quote-modal.is-open {
  opacity: 1;
}

.hc-quote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
}

.hc-quote-dialog {
  position: relative;
  z-index: 1;
  width: min(1200px, 80vw);
  max-height: 80%;
  overflow-y: auto;
  background: #fff;
  padding: clamp(32px, 3vw, 58px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .2);
  transform: translateY(18px);
  transition: transform .18s ease;
}

.hc-quote-modal.is-open .hc-quote-dialog {
  transform: translateY(0);
}

.hc-quote-dialog h2 {
  margin: 0 0 clamp(35px, 2.8vw, 70px);
  font-size: clamp(30px, 2.8vw, 48px);
  font-weight: 500;
  letter-spacing: 0;
}

.hc-quote-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hc-quote-close::before,
.hc-quote-close::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 8px;
  width: 25px;
  height: 2px;
  background: #111;
}

.hc-quote-close::before {
  transform: rotate(45deg);
}

.hc-quote-close::after {
  transform: rotate(-45deg);
}

.hc-quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4.2vw, 30px) 26px;
}

.hc-field {
  display: grid;
  gap: 13px;
}

.hc-field-wide,
.hc-consent,
.hc-form-status,
.hc-form-actions {
  grid-column: 1 / -1;
}

.hc-field label {
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 500;
}

.hc-field input {
  width: 100%;
  height: clamp(40px, 6vw, 60px);
  border: 1px solid #777;
  border-radius: 0;
  padding: 0 clamp(20px, 2.5vw, 30px);
  color: #111;
  background: #fff;
  font: inherit;
  font-size: clamp(14px, 4.4vw, 16px);
  outline: none;
}

.hc-field input:focus {
  border-color: #111;
  box-shadow: 0 0 0 1px #111;
}

.hc-field input::placeholder {
  color: #666;
  opacity: 1;
}

.hc-consent {
  font-size: 16px;
  line-height: 1.08;
  cursor: pointer;
}
.hc-consent label{width: 100%;}



.hc-form-status {
  min-height: 22px;
  margin: -25px 0 0;
  font-size: 14px;
}

.hc-form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3.5vw, 52px);
}

.hc-form-actions button {
  min-height: clamp(40px, 6vw, 48px);
  border-radius: 0;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
}

.hc-cancel-btn {
  border: 1px solid #111;
  color: #111;
  background: #fff;
}

.hc-submit-btn {
  border: 1px solid #000;
  color: #fff;
  background: #000;
}

.hc-cancel-btn:hover,
.hc-cancel-btn:focus {
  background: #f2f2f2;
}

.hc-submit-btn:hover,
.hc-submit-btn:focus {
  background: #292929;
}

.phone{display:none}

@media(max-width:1441px){
  .hc-profile-pic{transform: translateY(-20%);}
}

@media (max-width: 992px) {
  .hc-about-hero {
    min-height: 430px;
  }

  .hc-profile h1 {
    margin-bottom: 70px;
  }

  .hc-profile-copy {
    width: 75%;
  }

  .hc-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hc-process-grid li:not(:nth-child(4n))::after {
    display: none;
  }
}


@media(max-width:768px){
  .pc{display: none;}
  .phone{display: block;}
  .hc-process-grid li:nth-child(4)::after, .hc-process-grid li:nth-child(5)::after,.hc-process-grid li:nth-child(6)::after, .hc-process-grid li:nth-child(7)::after, .hc-process-grid li:nth-child(8)::after{display: none;}
}

@media (max-width: 700px) {
  .hc-about-hero {
    height: 82vw;
    min-height: 360px;
  }

  .hc-section {
    padding: 30px 0;
  }

  .hc-profile {
    padding-bottom: 30px;
  }

  .hc-profile h1 {
    margin-bottom: 30px;
  }

  .hc-profile-copy {
    width: 100%;
    font-size: 14px;
  }

  .hc-solution-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 25px;
  }

  .hc-outline-btn {
    justify-self: start;
  }

  .hc-heading-row {
    display: block;
  }

  .hc-heading-row h2,
  .hc-shipping h2 {
    font-size: 32px;
  }

  .hc-heading-row span {
    display: block;
    margin-top: 20px;
  }

  .hc-team-grid,
  .hc-shipping-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hc-team-grid img,
  .hc-team-grid img:last-child,
  .hc-shipping-grid img {
    aspect-ratio: 16 / 10;
  }

  .hc-certifications span {
    width: 58px;
    height: 58px;
    font-size: 11px;
    border-width: 2px;
  }

  .hc-process h2 {
    font-size: 30px;
    margin-bottom: 45px;
  }

  .hc-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 14px;
  }

  .hc-process-grid li {
    grid-template-columns: 36px 1fr;
    grid-template-rows: 54px auto;
  }

  .hc-process-grid b {
    font-size: 28px;
  }

  .hc-process-grid span {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .hc-process-grid {
    grid-template-columns: 1fr;
  }

  .hc-process-grid img {
    aspect-ratio: 2.8 / 1;
  }
  .hc-profile-pic{position: relative;width:100%;transform:translateY(0);margin-bottom:30px;}
  .hc-kicker{margin-top:20px;}
  .hc-certifications{width: 100%;}
}